標題:
檔案與串流 (一)
[打印本頁]
作者:
tonyh
時間:
2018-2-9 19:42
標題:
檔案與串流 (一)
本帖最後由 tonyh 於 2020-2-15 14:09 編輯
建立資料路徑 C:/a/b/c/ 並在該路徑下建立一新檔案 test.txt
import java.io.File;
public class Ch01 {
public static void main(String[] args) {
File f=new File("C:/a/b/c/test.txt");
f.getParentFile().mkdirs();
try {
f.createNewFile();
} catch (Exception e) {}
System.out.println(f.getParentFile());
System.out.println(f.getAbsolutePath());
}
}
複製代碼
作者:
李知易
時間:
2018-2-9 21:11
本帖最後由 李知易 於 2018-2-9 21:13 編輯
import java.io.File;
public class Ch000{
public static void main(String[] args)
{
File f=new File("C:/a/b/c/test.txt");
f.getParentFile().mkdirs();
try {
f.createNewFile();
} catch (Exception e) {}
System.out.println(f.getParentFile());
System.out.println(f.getAbsolutePath());
}
}
複製代碼
作者:
黃璽安
時間:
2018-2-23 19:46
import java.io.File;
public class Ch01 {
public static void main(String[] args) {
File f=new File("C:/a/b/c/test.txt");
f.getParentFile().mkdirs();
try {
f.createNewFile();
} catch (Exception e) {}
System.out.println(f.getParentFile());
System.out.println(f.getAbsolutePath());
}
}
複製代碼
作者:
陳思惟
時間:
2018-2-23 20:23
import java.io.File;
public class Ch01 {
public static void main(String[] args) {
File f=new File("C:/a/b/c/test.txt");
f.getParentFile().mkdirs();
try {
f.createNewFile();
} catch (Exception e) {}
System.out.println(f.getParentFile());
System.out.println(f.getAbsolutePath());
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2