ディレクトリ内のすべてのファイルの内容をマージするための Java コードは次のとおりです。 -
import java.io.*; public class Demo{ public static void main(String[] args) throws IOException{ File my_dir = new File("path to place where file is generated"); PrintWriter my_writer = new PrintWriter("The .txt where changes are stored"); String[] file_names = my_dir.list(); for (String file_names : fileNames){ System.out.println("Content read from " + file_names); File my_file = new File(my_dir, file_names); BufferedReader my_reader = new BufferedReader(new FileReader(my_file)); my_writer.println("The file contains " + file_names); String my_line = my_reader.readLine(); while (my_line != null){ my_writer.println(my_line); my_line = my_reader.readLine(); } my_writer.flush(); } System.out.println("All data from files have been read and " + my_dir.getName() + "merged"); } }
All file contents will be merged into a single text file.
named Demo このクラスには main 関数が含まれています。新しいファイルタイプとその場所が作成されます 新しいファイルを作成する必要がある場所は、パラメータとして渡されます。
PrintWriter インスタンスを作成し、ディレクトリに存在するファイル名を文字列で保存します 配列。ファイル名は BufferedReader インスタンスを使用して反復され、読み取られます。読み取られたものはすべて保持されます 新しいファイルを書き込んで保存します。ライターもフラッシュされるため、残留物は残りません。
以上がディレクトリ内のすべてのファイルの内容をマージする Java プログラムの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。