gpt4 book ai didi

C# 将文件名作为 json 参数传递 - 获取错误 "Unrecognized escape sequence. "

转载 作者:行者123 更新时间:2023-11-30 19:23:12 24 4
gpt4 key购买 nike

我想通过 JSON 传递文件路径。在反序列化时出现错误:

Unrecognized escape sequence. (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);

最佳答案

问题是你的字符串在执行时的内容是:

{"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,而不是手动编码。

关于C# 将文件名作为 json 参数传递 - 获取错误 "Unrecognized escape sequence. ",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54634386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com