2
如果我嘗試反序列化的json:GSON NumberFormatException的
String myjson = "
{
"intIdfCuenta":"4720",
"intIdfSubcuenta":"0",
"floatImporte":"5,2",
"strSigno":"D",
"strIdfClave":"FT",
"strDocumento":"1",
"strDocumentoReferencia":"",
"strAmpliacion":"",
"strIdfTipoExtension":"IS",
"id":"3"
}";
viewLineaAsiento asiento = gson.fromJson(formpla.getViewlineaasiento(),viewLineaAsiento.class);
我得到這個錯誤:
com.google.gson.JsonSyntaxException: java.lang.NumberFormatException: For input string: "5,2"
我如何解析 「5,2」 爲Double ???
我知道,如果我用"floatImporte":"5.2"
我可以分析它沒有任何問題,但我怎麼解析"floatImporte":"5,2"