我的程序使用大文本文件(45MB)来操作并在eclipse中运行良好。导出到jar后,访问大型源文件时无法正常工作。小文件(300kB)没有问题
Eclipse:冻结10秒钟,然后准备好加载文件。
Jar:冻结5秒钟,没有任何反应。
关于JAR能够正常运行,我可以改变什么?
编辑:
public String [] RetreiveTokens(){
String path = Main_Win.class.getProtectionDomain().getCodeSource().getLocation().getPath();
String decodedPath = null;
try {
decodedPath = URLDecoder.decode(path, "UTF-8");
} catch (UnsupportedEncodingException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
String FileName=decodedPath+"languages/D3.txt";//LangPath+SourceFileLists.get(i);
String content = null;
boolean DictCC = false;
int ContentsAddress=0;
try {
BufferedReader fin;
String lineFromFile="";
try {
fin = new BufferedReader(new FileReader(FileName));
//System.out.println("cc");
lineFromFile = fin.readLine();
lineFromFile=lineFromFile.substring(3);
if(lineFromFile.substring(0,1).equals("#")){
DictCC=true;
for(ContentsAddress=0; fin.readLine().length()>0; ContentsAddress++);
ContentsAddress+=2;
//System.out.println(ContentsAddress);
}
fin.close();
} catch (IOException e) {
e.printStackTrace();
}
//System.out.println(lineFromFile);
//if(!DictCC){
content = new Scanner ( new File (FileName), "UTF-8").useDelimiter("\\Z").next();
//}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String[] tokens=null;
//String[][] Words_1=new String[2][32];;
if(!DictCC){
content=content.substring(1);
content=content.replace("\r\n\r\n", "\r\n");
tokens = content.split("\r\n");
}
else {
content = content.split("\r\n")[ContentsAddress];
tokens = content.split(" ");
}
for (int t=0; t<tokens.length; t++){
if(tokens[t].contains("\n")){
int index = nthOccurrence(tokens[t], '\n', 0);
tokens[t]=tokens[t].substring(index);
}
if(tokens[t].contains("[")){
tokens[t]=tokens[t].replace(" [", "[");
tokens[t]=tokens[t].replace("] ", "]");
tokens[t]=tokens[t].replaceAll("\\[.*\\]", "");
}
if(tokens[t].contains("<")&&tokens[t].contains(">")){
tokens[t]=tokens[t].replace(" <", "<");
tokens[t]=tokens[t].replace("> ", ">");
tokens[t]=tokens[t].replaceAll("\\<.*\\>", "");
}
tokens[t]=tokens[t].replaceAll("[?¿!¡,.;/'{}]", "");
tokens[t]=tokens[t].replace("\n", "").replace("\r", "");
}
return tokens;
}
答案 0 :(得分:0)
我认为你的问题是堆内存不足。您正在通过双击其jar来运行应用程序,因此使用了没有STDOUT和STDERR的javaw
。
打开命令提示符并键入java -jar yourjar.jar
运行您的应用程序,其中yourjar.jar
是您jar的实际路径。
您会看到OutOfMemoryError
。现在你应该增加内存。将参数-Xmx2048M
添加到执行路径,即:
java -Xmx2048M -jar yourjar.jar
我希望这会有所帮助。如果找不到更好的号码。显然,这一行意味着您的应用程序将能够使用最多2G的堆。
现在问题是“你为什么需要这么多记忆?”尝试检查您的代码,看看发生了什么。可能你把整个文件读入内存?你需要这个吗?等等。