这里是我的空间,是我用来记录点滴的沃土...
核心提示:1、利用System.getProperty()函数获取当前路径:System.out.println(System.getProperty("user.dir"));//user.dir指定了当前的路径2、使用File提供的函数获取当前路径:File directory = new File("");//设定为当前文件夹try{ System.out.println(directory.getCanonicalPath());//获取标准的路径 System.out.println(directory.getAbsolutePath());/ Read More
posted @ 2012-04-20 23:40 wsx2miao Views(245) Comments(0) Diggs(0) Edit
这里是我的空间,是我用来记录点滴的沃土...