您好我試圖解析JSON,如:JSON解析不會放棄使用GSON
{"error":{"code":20,"message":"Transaction not found."}}
所使用的代碼是:
GulfBoxError errordetails= new Gson().fromJson(json, GulfBoxError.class);
System.out.println("RESULT :"+errordetails.getCode()+" "+errordetails.getMessage());
類文件:
public class GulfBoxError {
public int code;
public String message;
public int getCode() {
return code;
}
public String getMessage() {
return message;
}
}
每當我嘗試,我沒有得到他在這裏值:
RESULT :0 null
任何想法爲什麼?我在這裏丟失的東西
[JSON解析錯誤使用gson]的可能重複(https://stackoverflow.com/questions/9915141/json-parse-error-using-gson) – Balasubramanian
@ErikKralj什麼錯誤屬性? – Karthi
@Balasubramanian。這不是重複的!問題可能似乎重複,但其實際上不同! – Karthi