2

我需要将两个文本文件合并为一个合并的文本文件。文件只包含数字,然后必须按升序列出数字。我已经对其进行了编码来执行此操作,但是,我无法让它添加最后一个数字,并且它给了我一个 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
4

3 回答 3

2

您需要考虑当一个文件或另一个文件用完时该怎么办。

BufferedReader.readLine() 在 EOF 上返回空值,因此您将寻找空值。

逻辑看起来像这样

str1 = read file1
num1 = parse( str1 ) //parse() should be a method that can properly handle a null 
str2 = read file2    //and return something appropriate, like -1, when null 
num2 = parse( str2 ) //is encountered

while str1 != null || str2 != null

    if str2 == null || num1 < num2
        write num1
        str1 = read file1
        num1 = parse( str1 )
    else if str1 == null || num1 > num2
        write num2
        str2 = read file2
        num2 = parse( str2 )
    else if num1 == num2
        write num1
        write num2
        str1 = read file1
        num1 = parse( str1 )
        str2 = read file2
        num2 = parse( str2 )
于 2013-09-20T22:06:21.713 回答
0

你尝试使用trim() Integer.parseInt(blabla.trim());因为你的数字有一个或多个空格字符所以解析不成功。

示例代码:

public static void main(String[] args) 抛出 MalformedURLException, IOException {

File file1 = new File("C:\\Users\\Melih\\Desktop\\file1.txt");
File file2 = new File("C:\\Users\\Melih\\Desktop\\file2.txt");
File output = new File("C:\\Users\\Melih\\Desktop\\file3.txt");

BufferedReader file1Reader = new BufferedReader(new FileReader(file1));
BufferedReader file2Reader = new BufferedReader(new FileReader(file2));
PrintWriter writer = new PrintWriter(output);

String file1Num = file1Reader.readLine();
String file2Num = file2Reader.readLine();

while (file1Num != null && file2Num != null) {
    int num1 = Integer.parseInt(file1Num.trim());
    int num2 = Integer.parseInt(file2Num.trim());

    if (num1 < num2) {
        writer.println(num1);
        file1Num = file1Reader.readLine();

    } else if (num2 < num1) {
        writer.println(num2);
        file2Num = file2Reader.readLine();
    } else {
        writer.println(num1);
        file1Num = file1Reader.readLine();
    }
}
while (file1Num != null) {

    writer.println(file1Num);
    file1Num = file1Reader.readLine();
}
while (file2Num != null) {
    writer.println(file2Num);
    file2Num = file2Reader.readLine();
}
file1Reader.close();
file2Reader.close();
writer.close();

}

于 2013-09-20T21:50:38.543 回答
0

假设您有两个包含第一个和第二个文件的整数值的列表,如果您将两个文件读入列表,比如 lst1 和 lst2,那么合并到 lst3 应该很容易:

Integer a1 = null;
Integer a2 = null;
while (!lst1.isEmpty() || !lst2.isEmpty()){
    try{
      a1 = (Integer)lst1.remove(0);
    }
    catch(Exception e){}
    try{
      a2 = (Integer)lst2.remove(0);
    }
    catch(Exception e){}

    if(a1 == null && a2 != null) lst3.add(a2);
    else if(a1 != null && a2 == null) lst3.add(a1);
    else{
        while(a1 < a2){
           lst3.add(a1);
           try{
               a1 = (Integer)lst1.remove(0);
           }        
           catch(Exception e){break;}  
        }
        while(a1 >= a2){
           lst3.add(a2);
           try{
               a2 = (Integer)lst2.remove(0);
           }        
           catch(Exception e){break;}  
        }     
        while(a1 != null && lst2.isEmpty()){
           lst3.add(a1);
           try{
               a1 = (Integer)lst1.remove(0);
           }        
           catch(Exception e){break;}  
        }   
        while(a2 != null && lst1.isEmpty()){
           lst3.add(a2);
           try{
               a2 = (Integer)lst2.remove(0);
           }        
           catch(Exception e){break;}  
        }        
    }    
}

然后您可以将 的内容写入lst3输出文件。
免责声明:我使用记事本编写了代码-您可能需要对其进行“修补”;)

于 2013-09-20T21:55:30.597 回答