การเชคว่าไฟล์มีอยู่จริงหรือไม่ใน Java

ต่อไปเป็นตัวอย่างการเชคว่าไฟล์มีอยู่จริงหรือไม่โดยใช้ File.exists() ครับ.
package demo.file;

import java.io.File;

public class FileCheckers {

    /**
     * @param args
     */
    public static void main(String[] args) {
        File f = new File("C:\\users\\nopphanan7\\newfile.txt");

        if (f.exists()) {
            System.out.println("File existed");
        } else {
            System.out.println("File not found!");
        }
    }
}
ผลลัพธ์ที่ได้คือ
File existed

About Nop

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.
    Blogger Comment

0 comments:

Post a Comment