วันเสาร์ที่ 15 ตุลาคม พ.ศ. 2559

การสร้างไฟล์ใน Java

ในการสร้างไฟล์ใน 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!

ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Set MongoDB in the windows path environment

  Let’s set MongoDB in the windows environment in just a few steps. Step 1: First download a suitable MongoDB version according to your mach...