Response.ContentType = "text/plain";
System.IO.Stream inptStrm = Request.InputStream;
byte[] bytes = new byte[inptStrm.Length];
int i = inptStrm.Read(bytes, 0, Convert.ToInt32(inptStrm.Length));
string Input = Encoding.UTF8.GetString(bytes);
JsonTextParser parsor = new JsonTextParser();
JsonObject jsonObj = parsor.Parse(Input);
我的输入字符串是 :::::
{
"function":"addwhy",
"lastname":"\"", // this line
}
我的代理确实也尝试将其转换为 UTF8 格式,但是我的代码在用于解析器时生成了错误。