gpt4 book ai didi

Java 程序将一个文件逐行分成两个其他文件 - 作业

转载 作者:行者123 更新时间:2023-12-01 18:41:42 26 4
gpt4 key购买 nike

我需要程序读取包含多行随机字符串的 .txt 文件,并将每个偶数行放入一个 .txt 文件中,将每个奇数行放入另一个 .txt 文件中。它没有给我任何错误,但当我检查它们时,文件是空白的。感谢您的帮助:)

import java.util.*;
import java.io.*;
public class SplitFile
{
public static void main(String[] args)
{
try
{
// Open Scanner for file named args[0]
Scanner scan = new Scanner(new File(args[0]));
// Open a PrintWriter for file named args[1]
PrintWriter file1 = new PrintWriter(new File(args[1]));
// Open a PrintWriter for file named args[2]
PrintWriter file2 = new PrintWriter(new File(args[2]));
while (scan.hasNextLine())
{
// Read a line from scan
// Write that line to file1
file1.println(scan.nextLine() + ", ");

if (scan.hasNextLine())
{
// Read a line from scan
// Write that line to file2
file2.println(scan.nextLine() + ", ");
}
}
}
// Catch the IOException
catch (IOException ex)
{
System.out.println("Error: No Input Given");
System.exit(0);
}
}
}

最佳答案

您应该关闭 PrintWriter 以将输出刷新到文件中。完成文件操作后,您需要执行以下操作:

file1.close();
file2.close();

注意:最好在 try block 之外声明 PrintWriter 对象,以便可以使用 finally 关闭编写器。

关于Java 程序将一个文件逐行分成两个其他文件 - 作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19727431/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com