在我目前的设置中,我有一个集中的助手类,如下所示:
@Override
protected void onPostExecute(String result)
{
super.onPostExecute(result);
if(task == null) {
return;
}
Gson gson = new GsonBuilder().create();
ResponseJson p = null;
try {
p = gson.fromJson(result, ResponseJson.class);
} catch(JsonSyntaxException e) {
//Toast.makeText(getApplicationContext(), getApplicationContext().getResources().getString(R.string.toast_sync_completed), Toast.LENGTH_SHORT).show();
Log.e("", e.getMessage() + " got '" + result + "'");
}
Log.i("", p.toString());
Log.i("", result);
if(p.status.equals(ResultStatus.SUCCESS.toString())) {
task.success(p.data);
} else if (p.status.equals(ResultStatus.FAIL.toString())) {
task.fail(p.data);
} else if (p.status.equals(ResultStatus.ERROR.toString())) {
task.error(p.message);
} else {
throw new UnsupportedOperationException();
}
}
问题是,我想让ResponseJson
类成为动态,data
属性是唯一的(有时我需要ArrayList<Something>
其他时间HashMap<String, String>
)适用于转换我的JSON结果。我可以使用泛型或其他方法实现这一目标吗?
答案 0 :(得分:1)
如果您将Object
设置为data
的类型,
class ResponseJson {
Object data;
}
稍后,您可以按以下方式获得ArrayList
或Hashmap
的结果;
if (responseJson.data instanceof ArrayList<?>) {
ArrayList<String> arrayList = (ArrayList<String>) responseJson.data;
} else if(responseJson.data instanceof HashMap<?, ?>) {
HashMap<String, String> hashmap = (HashMap<String, String>) responseJson.data;
}
由于类型擦除,参数化类型在运行时无法识别。但如果你知道这种类型,你可以做一个未经检查的演员。