標題:
檔案與串流 (一)
[打印本頁]
作者:
tonyh
時間:
2020-2-15 14:10
標題:
檔案與串流 (一)
建立資料路徑 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());
}
}
複製代碼
作者:
蔡幸融
時間:
2020-2-15 14:41
import java.io.File;
import java.io.IOException;
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 (IOException e) {
// TODO 自動產生的 catch 區塊
e.printStackTrace();
}
}
}
複製代碼
作者:
譚暐霖
時間:
2020-2-15 14:54
import java.io.File;
public class Ch1000 {
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());
}
}
複製代碼
作者:
莊旻叡
時間:
2020-2-15 15:24
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