標題:
檔案與串流 (一)
[打印本頁]
作者:
tonyh
時間:
2017-1-14 17:45
標題:
檔案與串流 (一)
本帖最後由 tonyh 於 2017-1-14 18:01 編輯
建立資料路徑 C:/a/b/c/ 並在該路徑下建立一新檔案 test.txt
[attach]1847[/attach]
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());
}
}
複製代碼
作者:
李允軒
時間:
2017-1-14 17:46
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/text.txt");
f.getParentFile().mkdirs();
try {
f.createNewFile();
} catch (IOException e) {}
}
}
複製代碼
作者:
林宇翔
時間:
2017-1-14 17:48
import java.io.*;
public class Ch142
{
public static void main(String[] args){
File f=new File("C:/a/b/c/text.txt");
f.getParentFile().mkdirs();
try{
f.createNewFile();
}catch (IOException e){}
}
}
複製代碼
作者:
劉得恩
時間:
2017-1-14 18:02
import java.io.File;
public class Ch01 {
public static void main(String arg[])
{
File f=new File("C:/a/b/c/t.tx t");
f.getParentFile().mkdirs();
try
{
f.createNewFile();
}catch(Exception e){}
}
}
複製代碼
作者:
張彥承
時間:
2017-1-19 18:45
import java.io.File;
public class Ch100 {
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