摘要: 1.getPath()与getAbsolutePath()的区别public static void test1(){ File file1 = new File(".\\test1.txt"); File file2 = new File("D:\\workspace\\test\\test1.txt"); System.out.println("-----默认相对路径:取得路径不同------"); System.out.println(file1.getPath()); System.out.println(file1... 阅读全文
posted @ 2013-05-23 09:19 王 庆 阅读(585) 评论(0) 推荐(0) 编辑