我试图找到两个文本文件之间的区别,并尝试在第三个文件中编写差异! 我很成功,但我的文件太大,它有近200000行,当我将它存储到arrylist时,它只存储数据直到第6482行。我不明白为什么会发生这种情况。任何人都可以帮助我吗? 这是我的代码
import java.io.*;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class SearchThe {
public static void main(String args[]) {
try {
// Open the file c:\test.txt as a buffered reader
Scanner s = new Scanner(new File("D://abc.txt"));
Scanner s2 = new Scanner(new File("D://xyz.txt"));
// Scanner s = new Scanner(new File("D://file1.txt"));
// Scanner s2 = new Scanner(new File("D://file2.txt"));
ArrayList<String> file1_list = new ArrayList() ;
ArrayList<String> file2_list = new ArrayList();
// file1_list.ensureCapacity(193225);
// file2_list.ensureCapacity(193225);
while (s.hasNext()) {
file1_list.add(s.next());
}
s.close();
while (s2.hasNext()) {
file2_list.add(s2.next());
}
s2.close();
FileWriter stream = new FileWriter("D://file1_copy.csv");
BufferedWriter abc = new BufferedWriter(stream);
for(int i=0;i<file1_list.size();i++)
{
System.out.println("File 1 data" +file1_list.get(i));
abc.write(file1_list.get(i));abc.newLine();
}
abc.close();
//
// Start a line count and declare a string to hold our current
int linecount = 0;
String line;
// Let the user know what we are searching for
// for(int i=0;i<file1_list.size();i++)
// { // Loop through each line, stashing the line into our line
FileWriter fstream = new FileWriter("D://result.txt");
BufferedWriter out = new BufferedWriter(fstream);
for(int j =0;j<file1_list.size();j++)
{
System.out.println("\n\nSearching for " + file1_list.get(j) + " in file 1...");
if(file2_list.contains(file1_list.get(j)))
{
System.out.println(file1_list.get(j) +" found in a file 2");
}
else
{
System.out.println(file1_list.get(j) +" not found in a file 1 ");
out.write(file1_list.get(j));out.newLine();
}
}
out.close();
}
catch (IOException e) {
System.out.println("IO Error Occurred: " + e.toString());
}
}
}
答案 0 :(得分:0)
默认情况下,扫描仪使用空白分隔符;你确定第6482行后面有空格。请检查最后一个令牌是否在第6482行之后没有返回整个文件。
如果空白分隔符没有问题,请检查java运行时的可用内存。
Runtime rt = Runtime.getRuntime(); long freeMem = rt.freeMemory();
我希望内存不应成为问题,对于32位进程模型,进程的最大虚拟地址大小约为4 GB;但最好检查一下。 希望,它会给你一个指向你问题的指针。
答案 1 :(得分:0)
我检查了空闲记忆,然后说
免费记忆69476304
所以这不是问题,你是对的。在6482行之后还有一个空格。 我无法弄清楚问题是什么:(