获取json解析异常

时间:2019-06-16 06:56:34

标签: flutter

我正在尝试使用json.decode(myString)将json字符串解析为HashMap,但出现错误。

以下是我的json字符串:

{
 'id':'5043' , 
 'artist':'Axwell Λ Ingrosso' ,
 'title':'More Than You Know' ,
 'displayName':'FDM Axwell Ingrosso.mp3' ,
 'duration':'203050',
 'path':'/storage/emulated/0/UCDownloads/FDM_Axwell_Ingrosso.mp3' 
 }

我正在使用jsong.decode(aboveString)进行转换,但出现以下错误:

  

FormatException:意外的字符(在字符2处){'id':'5043','artist':'AxwellΛIngrosso','title':'比您知道的更多'

1 个答案:

答案 0 :(得分:1)

据我所知,您应该将所有单引号更改为双引号。

{
   'person': 'Λ'
}

上面给我一个错误,但是,这不是这样的:

{
   "person": "Λ"
}