在此代码中出现一些错误:
错误(18,40):未报告的异常java.io.FileNotFoundException;必须被抓住或宣布被抛出 错误(19,42):未报告的异常java.io.IOException;必须被抓住或宣布被抛出
但是当抛出FileNotFound和IOException异常时,编译器会显示以下错误:
错误(15,27):removeEldestEntry(java.util.Map.Entry)in不能覆盖java.util.LinkedHashMap中的removeEldestEntry(java.util.Map.Entry);重写方法不会抛出java.io.IOException
问题是什么? 代码在这里:
package client;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.ObjectOutputStream;
import java.io.IOException;
import java.util.*;
public class level1 {
private static final int max_cache = 50;
private Map cache = new LinkedHashMap(max_cache, .75F, true) {
protected boolean removeEldestEntry(Map.Entry eldest) {
boolean removed = super.removeEldestEntry(eldest);
if (removed) {
FileOutputStream fos = new FileOutputStream("t.tmp");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(eldest.getValue());
oos.close();
}
return removed;
}
};
public level1() {
for (int i = 1; i < 52; i++) {
String string = String.valueOf(i);
cache.put(string, string);
System.out.println("\rCache size = " + cache.size() +
"\tRecent value = " + i + " \tLast value = " +
cache.get(string) + "\tValues in cache=" +
cache.values());
}
}
答案 0 :(得分:2)
试试这个..
package client;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.util.LinkedHashMap;
import java.util.Map;
public class Level1 {
private static final int max_cache = 50;
private Map cache = new LinkedHashMap(max_cache, .75F, true) {
@Override
protected boolean removeEldestEntry(Map.Entry eldest) {
boolean removed = super.removeEldestEntry(eldest);
if (removed) {
FileOutputStream fos;
try {
fos = new FileOutputStream("t.tmp");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(eldest.getValue());
oos.close();
} catch (IOException ex) {
System.err.println("IOException!!");
} catch (FileNotFoundException ex) {
System.err.println("FileNotFoundException!!");
}
}
return removed;
}
};
public level1() {
for (int i = 1; i < 52; i++) {
String string = String.valueOf(i);
cache.put(string, string);
System.out.println("\rCache size = " + cache.size()
+ "\tRecent value = " + i + " \tLast value = "
+ cache.get(string) + "\tValues in cache="
+ cache.values());
}
}
}
答案 1 :(得分:1)
您需要在removeEldestEntry方法中处理FileNotFoundException(处理为,捕获并记录它)。当您重写方法时,不允许在方法签名上添加新的异常,因为那时您的子类不再可以替代您要子类化的东西。
否则找到另一种方法来执行此操作,以便removeEldestEntry对条目进行排队,其他东西读取队列并对文件进行序列化。实际上在阅读了Javadoc后,似乎必须有一个更好的地方来放置这个逻辑,实际执行删除的相同代码可能是更好的序列化位置。