ในการสร้างไฟล์ใน Java นั้นเราจะใช้
File.createNewFile() เพื่อสร้างไฟล์ครับโดยถ้าสร้างสำเร็จระบบจะคืนค่า true ออกมาหากไม่สำเร็จระบบจะคืนค่า false ออกมาครับ เรามาลองดูตัวอย่างกันเลย
package demo.file;
import java.io.File;
import java.io.IOException;
/**
* @author nopphanan7
*
*/
public class CreateFileExample {
/**
* @param args
*/
public static void main(String[] args) {
try {
File file = new File("C:\\users\\nopphanan7\\newfile.txt"); // หมายเหตุุ : nopphanan7 คือชื่อ user
if (file.createNewFile()){
System.out.println("File is created!");
}else{
System.out.println("File already exists.");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
ผลลัพธ์ที่ได้คือ
File is created!
This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
0 comments:
Post a Comment