我如何告诉 fromJson 方法我需要返回 T 类型的对象?我知道 T.class 是不可能的。
@Override
public T getById(String id) {
File json = new File(folder, id);
JsonReader reader = null;
try {
reader = new JsonReader(new FileReader(json.getPath()));
return gson.fromJson(reader, T.class);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
reader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return null;