我需要将两个文本文件合并为一个合并的文本文件。文件只包含数字,然后必须按升序列出数字。我已经对其进行了编码来执行此操作,但是,我无法让它添加最后一个数字,并且它给了我一个 numberformatexception 错误。我相信这是因为我的最后一个数字没有任何可比较的东西,所以我无法将它添加到列表中。当最后一个数字也没有什么可比较的时候,我不确定如何添加它(我很确定我需要另一个 if 语句,我只是不知道该怎么做)而且我不知道什么是正确的 while 语句是,但是程序使用我使用的 while 语句正确运行,没有最后一个数字。
public static void main(String[] args)
{
FileReader file1 = null;
FileReader file2 = null;
BufferedReader readfile1 = null;
BufferedReader readfile2 = null;
FileWriter fileout = null;
PrintWriter dataout;
String fname1 = "list1.txt";
String fname2 = "list2.txt";
int md = 0;
int file1num = 0;
int file2num = 0;
String file1str;
String file2str;
try
{
file1 = new FileReader(fname1);
}
catch
(FileNotFoundException xyz)
{
System.out.println("File not found: " + fname1);
System.exit(-1);
}
catch
(IOException abc)
{
System.out.println("IOException: caught");
System.exit(-1);
}
readfile1 = new BufferedReader(file1);
try
{
readfile2 = new FileReader(fname2);
}
catch
(FileNotFoundException xyz)
{
System.out.println("File not found: " + fname2);
System.exit(-1);
}
catch
(IOException abc)
{
System.out.println("IOException: caught");
System.exit(-1);
}
readfile2 = new BufferedReader(file2);
try
{
fileout = new FileWriter("merged.txt");
}
catch(IOException adc)
{
System.out.println("file error");
System.exit(-1);
}
dataout = new PrintWriter(fileout);
file1str = file1.readLine();
file1num = Integer.parseInt(file1str);
file2str = file2.readLine();
file2num = Integer.parseInt(file2str);
while(md !=-1)
{
if(file1num<file2num)
{
md=file1num;
file1str = file1.readLine();
file1num = Integer.parseInt(file1str);
}
if(file2num<file1num)
{
md=file2num;
file2str = file2.readLine();
file2num = Integer.parseInt(file2str);
}
if(file1num==file2num)
{
md=file1num;
file1str = file1.readLine();
file1num = Integer.parseInt(file1str);
}
}
所以我知道在读取文件 1 中的最后一个 int 后,它会返回 null,这意味着文件 2 无法将自己与其他任何内容进行比较,我相信这就是我的问题所在。问题在于 while 语句及其中包含的内容。另外我不能使用任何数组或类似的东西,它必须简单地读取两个文件,比较,将最小的数字添加到合并文件中。
示例输入:
文件1:
1
2
3
4
6
8
文件2:
3
5
6
8
9
预期输出:
1
2
3
3
4
5
6
6
8
8
9