JSON.NET:无法翻译 Unicode 字符



我实现了一个包含一些文本的搜索树。现在,我想允许客户端将此树保存到磁盘 - serilize。因此,我正在使用 JSON.Net 将此对象服务器化到磁盘。由于我处理了巨大的文本文件(50MB+),因此我将这个对象直接服务器化到DISK(而不是获取包含此JSON的字符串)。

这是我当前的代码:

public void Save(string path)
{
    using (FileStream fs = File.Open(path, FileMode.OpenOrCreate))
    using (StreamWriter sw = new StreamWriter(fs))
    using (JsonWriter jw = new JsonTextWriter(sw))
    {
        jw.Formatting = Formatting.Indented;
        JsonSerializer serializer = new JsonSerializer();
        serializer.Serialize(jw, this);
    }
}

这是我得到的例外:

exception: 
    System.Text.EncoderFallbackException: Unable to translate Unicode character uD859 at index 485 to specified code page.
    Result StackTrace:  
    at System.Text.EncoderExceptionFallbackBuffer.Fallback(Char charUnknown, Int32 index)
       at System.Text.EncoderFallbackBuffer.InternalFallback(Char ch, Char*& chars)
       at System.Text.UTF8Encoding.GetBytes(Char* chars, Int32 charCount, Byte* bytes, Int32 byteCount, EncoderNLS baseEncoder)
       at System.Text.EncoderNLS.GetBytes(Char* chars, Int32 charCount, Byte* bytes, Int32 byteCount, Boolean flush)
       at System.Text.EncoderNLS.GetBytes(Char[] chars, Int32 charIndex, Int32 charCount, Byte[] bytes, Int32 byteIndex, Boolean flush)
       at System.IO.StreamWriter.Flush(Boolean flushStream, Boolean flushEncoder)
       at System.IO.StreamWriter.Dispose(Boolean disposing)
       at System.IO.TextWriter.Dispose()
    ...

未通过测试的文件是包含 chanise字符的文件(不确定这是问题所在)。

我该如何解决这个问题?

这不是JSON问题,而是StreamWriter问题,它遇到了无法编码的字符。尝试像这样打开它:

using (StreamWriter sw = new StreamWriter(fs, Encoding.Unicode))

相关内容

  • 没有找到相关文章

最新更新