Board logo

標題: 檔案與串流 (一) [打印本頁]

作者: tonyh    時間: 2020-2-15 14:10     標題: 檔案與串流 (一)

建立資料路徑 C:/a/b/c/ 並在該路徑下建立一新檔案 test.txt

  1. import java.io.File;
  2. public class Ch01 {
  3.         public static void main(String[] args) {
  4.                 File f=new File("C:/a/b/c/test.txt");
  5.                 f.getParentFile().mkdirs();
  6.                 try {
  7.                         f.createNewFile();
  8.                 } catch (Exception e) {}
  9.                 System.out.println(f.getParentFile());
  10.                 System.out.println(f.getAbsolutePath());
  11.         }
  12. }
複製代碼

作者: 蔡幸融    時間: 2020-2-15 14:41

  1. import java.io.File;
  2. import java.io.IOException;


  3. public class Ch01 {

  4.         public static void main(String[] args) {
  5.                 File f=new File("C:/a/b/c/test.txt");
  6.                 f.getParentFile().mkdirs();
  7.                 try {
  8.                         f.createNewFile();
  9.                 } catch (IOException e) {
  10.                         // TODO 自動產生的 catch 區塊
  11.                         e.printStackTrace();
  12.                 }
  13.         }

  14. }
複製代碼

作者: 譚暐霖    時間: 2020-2-15 14:54

  1. import java.io.File;
  2. public class Ch1000 {
  3.         public static void main(String[] args) {
  4.                 File f=new File("C:/a/b/c/test.txt");
  5.                 f.getParentFile().mkdirs();
  6.                 try {
  7.                         f.createNewFile();
  8.                 } catch (Exception e) {}
  9.                 System.out.println(f.getParentFile());
  10.                 System.out.println(f.getAbsolutePath());
  11.         }
  12. }
複製代碼

作者: 莊旻叡    時間: 2020-2-15 15:24

  1. import java.io.File;
  2. public class Ch01 {
  3.         public static void main(String[] args) {
  4.                 File f=new File("C:/a/b/c/test.txt");
  5.                 f.getParentFile().mkdirs();
  6.                 try {
  7.                         f.createNewFile();
  8.                 } catch (Exception e) {}
  9.                 System.out.println(f.getParentFile());
  10.                 System.out.println(f.getAbsolutePath());
  11.         }
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2