簡體   English   中英

在指定目錄中動態創建文本文件,寫入數據,並在Java中從該文件讀取數據

[英]Create text file dynamically in a specified directory, write data,read data from that file in java

最近我嘗試編寫上面給定標題的代碼,問題是我無法獲得足夠的日期來編寫,請看一下我的代碼。它顯示了一些錯誤,例如

在tagfile.createnewfile()之后顯示分號的無效令牌; 讓我們看一下代碼:

公共類WriteToFileExample {

String path = "G:"+File.separator+"Software"+File.separator+"Files";

 String fname= path+File.separator+"fileName.txt";

boolean bool=false;

    File f = new File(path);

    File f1 = new File(fname);

    try {

        f1.createNewFile();

        bool=f.mkdirs() ;

    } catch (IOException e) {

        // TODO Auto-generated catch block

        e.printStackTrace();
    }
}
private static final String FILENAME = "G:\\Software\\Files\\anil.txt";

static Scanner sc = new Scanner(System.in);

public static void main(String[] args) {

    String content = null;

    String[] str = new String[100];

    try (BufferedWriter bw = new BufferedWriter(new FileWriter(FILENAME))) {

        System.out.println(" enter no.of line to be inserted into file");

        int k = sc.nextInt();

        for (int i = 0; i <= k; i++) {

            System.out.println(" enter " + i + " line data");

            content = sc.nextLine();

            bw.write(content);

            str[i] = content;

        }

        System.out.println("The content present in\n 

G:\\ Software \\ Files \\ anil.txt是:“);

        for (int i = 1; i <= k; i++)
            System.out.println(str[i]);

    } catch (IOException e) {

        e.printStackTrace();

    }

}

}

請找到代碼,然后就可以使用

**Writing** : PrintWriter,Scanner,BufferedWriter etc to write to that file
**Reading** :FileReader,BufferReader,Scanner with these readers etc

String path = "G:"+File.separator+"Software"+File.separator+"Files";
    String fname= path+File.separator+"fileName.txt";
        File f = new File(path);
        File f1 = new File(fname);
        f.mkdirs() ;
        try {
            f1.createNewFile();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

參考: https : //www.lynda.com/Java-tutorials/Reading-writing-text-files/107061/113497-4.html

請參考上面的視頻,可能會有所幫助

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM