如果我尝试反序列化我的 json:
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:对于输入字符串:“5,2”
如何将“5,2”解析为 Double ???
我知道如果我使用"floatImporte":"5.2"
我可以毫无问题地解析它,但我要解析什么"floatImporte":"5,2"