我有一个CSV文件,下面显示了一行
"{""dateTime"":""2018-12-30T06:40:32.000Z"",""publicationId"":"8121,""redemptionId"":""bc30-0c29-11e9-a8ef-0050569d7c80"",""shopper"":{""id"":""f60d3"",""type"":""ALT""},""retailerCrossRef"":{""entityId"":4,""entityType"":""NETWORK"",""crossRefId"":""GL ""}}"
我需要将此行从JSON格式解析为一个类。 我无法删除每个符号周围的双引号, 像这样的“:”,我想从冒号中删除那些引号,也要用逗号“,”。
我在第1行第5列路径上收到com.google.gson.stream.MalformedJsonException:预期为“:” 因为这些报价。 请帮我解决一下这个。 谢谢。