全部博文(178)
发布时间:2015-01-21 13:52:45
http://justke123.iteye.com/blog/981627 好多用 Maven 的时候会遇到这样一个棘手的问题: 就是添加依赖后由于没有下载并关联源码,导致自动提示无法出现正确的方法名,而且不安装反编译器的情况下不能进入方法内部看具体实现 。 &nb.........【阅读全文】
发布时间:2015-01-15 17:42:55
生成properties文件Properties pro = new Properties();// 生成实例pro.setProperty("CleanPath", path);// 设置键值FileOutputStream fos = new FileOutputStream(propertyPath(文件路径,要到文件名)); pro.store(fos, "Init properties");// 向新文件存储向properties文件更新或.........【阅读全文】
发布时间:2015-01-10 22:54:31
import java.io.*; public class Ping { public static void main(String[] args)&nb.........【阅读全文】
发布时间:2014-12-25 14:43:10
createTempFile (String prefix, String suffix)在默认临时文件目录中创建一个空文件,使用给定前缀和后缀生成其名称。createTempFile (String prefix, String suffix, File directory)在指定目录中创建一个新的空文件,使用给定的前缀和后缀字符串生成其名称。public void deleteOnExit (.........【阅读全文】