我想通过JSON传递文件路径。反序列化时出现错误:
无法识别的转义序列。 (43):{“ Jobtype”:“ StepBatch”,“ SelectedId”:“ D:\ Input \ file1.CATPart”}
我已经转义了字符,但仍然显示错误...我在这里遗漏了什么吗?
string json = "{\"Jobtype\": \"StepBatch\",\"SelectedId\": \"D:\\Input\\file1.CATPart\"}";
var jsonObj = new JavaScriptSerializer().Deserialize<List<Arguments>>(json);
答案 0 :(得分:9)
问题在于执行时字符串的内容为:
{"Jobtype": "StepBatch","SelectedId": "D:\Input\file1.CATPart"}
这不是有效的JSON,因为SelectedId
的值中使用反斜杠。您需要JSON为:
{"Jobtype": "StepBatch","SelectedId": "D:\\Input\\file1.CATPart"}
因此您的C#必须是:
string json = "{\"Jobtype\": \"StepBatch\",\"SelectedId\": \"D:\\\\Input\\\\file1.CATPart\"}";
但是,考虑到无论如何您都立即对JSON进行反序列化,我建议您完全摆脱JSON部分,而自己创建Arguments
值。
如果您需要产生 JSON,则直接创建正确的值,然后获取JavaScriptSerializer
(或者最好是Json.NET)来为您创建JSON,而不是手工编码它。