0

すべての顧客情報のテキスト ファイルから読み取り、その情報を GUI に表示する GUI を構築しています。GUI を使用して顧客に情報を変更してもらい、[SAVE CHANGES] ボタンを押すことで、すべての変更を読み取り元の同じテキスト ファイルに保存できます。FileReader/FileWriter と BufferedReader/PrinterWriter は初めてです。誰かデザインの仕方を教えてください。どうもありがとう!

4

1 に答える 1

1

Java 7 を使用している場合は、はるかに簡単です。例えば:

public static void main(String[] args) throws IOException {

    // You get this file with JFileChooser
    File selectedFile = new File("file.txt");

    // Read file and close file.
    List<String> lines = Files.readAllLines(selectedFile.toPath(),
            StandardCharsets.UTF_8);

    // Modify some in the lines...

    // This replace the contents and close the file
    Files.write(selectedFile.toPath(), lines, StandardCharsets.UTF_8);

}
于 2013-11-09T15:53:28.480 に答える