【问题标题】:After parsing a value an unexpected character was encountered: 6. Path '[0]解析值后遇到意外字符:6.路径'[0]
【发布时间】:2017-05-10 18:37:33
【问题描述】:

我正在使用 Newtonsoft 库 (Json.Net) 从文件中解析 JSON 对象。我在jsonlint.com 验证了 JSON,它是有效的。

但是当我说:

using (StreamReader sr = new StreamReader(path))
{
    json = await sr.ReadToEndAsync();
}
ContactsCollection = JsonConvert.DeserializeObject<List<Contact>>(json); //error

我收到一个错误:

解析值后遇到意外字符:6.路径'[0]

所以我在json = await sr.ReadToEndAsync(); 处设置了一个断点,显示的 JSON 值为:

"\0{\0\"\0F\0i\0r\0s\0t\0N\0a\0m\0e\0\"\0:\0\"\0N\0i\0k\0h\0\"\0,\0\"\0L\0a\0s\0t\0N\0a\0m\0e\0\"\0:\0\"\0A\0N\0S\0\"\0,\0\"\0D\0a\0t\0e\0O\0f\0B\0i\0r\0t\0h\0\"\0:\0\"\01\02\0/\07\0/\01\09\08\09\0 \01\02\0:\00\00\0:\00\00\0 \0A\0M\0\"\0,\0\"\0W\0e\0i\0g\0h\0t\0\"\0:\01\06\08\0.\00\0,\0\"\0H\0e\0i\0g\0h\0t\0\"\0:\01\06\08\0.\00\0,\0\"\0P\0h\0o\0n\0e\0\"\0:\0\"\0(\08\00\05\0)\0 \02\05\01\0-\01\00\01\05\0\"\0}\0]\0"

这是我的实际 JSON:

[{
  "FirstName":"Nikh",
  "LastName":"ANS",
  "DateOfBirth":"12/7/1989 12:00:00 AM",
  "Weight":168.0,
  "Height":168.0,
  "Phone":"(805) 251-1015"
}]

这是我的联系人类:

public class Contact : INotifyPropertyChanged
{
    private string _firstName;
    public string FirstName
    {
        get { return _firstName; }
        set
        {
            _firstName = value;
            NotifyPropertyChanged("FirstName");
        }
    }

    private string _lastName;
    public string LastName
    {
        get { return _lastName; }
        set
        {
            _lastName = value;
            NotifyPropertyChanged("LastName");
        }
    }

    private string _dateOfBirth;
    public string DateOfBirth
    {
        get { return _dateOfBirth; }
        set
        {
            _dateOfBirth = value;
            NotifyPropertyChanged("DateOfBirth");
        }
    }

    private double _weight;
    public double Weight
    {
        get { return _weight; }
        set
        {
            _weight = value;
            NotifyPropertyChanged("Weight");
        }
    }

    private double _height;
    public double Height
    {
        get { return _height; }
        set
        {
            _height = value;
            NotifyPropertyChanged("Height");
        }
    }

    private string _phone;
    public string Phone
    {
        get { return _phone; }
        set
        {
            _phone = value;
            NotifyPropertyChanged("Phone");
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;
    private void NotifyPropertyChanged(String info)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(info));
        }
    }
}

有谁知道可能出了什么问题?

【问题讨论】:

  • 你能加入你的Contact类吗?
  • 请在您的示例中添加更多详细信息,例如联系类别

标签: c# json wpf json.net


【解决方案1】:

这看起来像是编码问题。我打赌您的文件以 UTF-16 编码保存,但您正在以 UTF-8 格式读取它。 (UTF-8 是 StreamReader 的默认编码。)这可以解释为什么在您读取的 JSON 值中间有各种 \0 字符,以及为什么 Json.Net 无法解析它。初始化StreamReader时尝试指定编码:

    using (StreamReader sr = new StreamReader(path, Encoding.Unicode, true))
    {
        ...
    }

或者,确保您的 JSON 文件使用 UTF-8 编码保存。

【讨论】:

  • 感谢 Brian,这是一个编码问题
【解决方案2】:

检查流 path 的位置是否设置正确。也许在调用sr.ReadToEndAsync();之前添加一行:path.Position = 0;

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2018-07-25
    • 2015-05-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多