我通过使用WebClient.DOwnloadStringAsync使用JSON WebService。返回的字符串包含一些奇怪的字符对:

"start_address" : "Goethestraße 7-9, Monaco di Baviera, Germania",


代替一些扩展的角色。我怎样才能看到正确的?在示例中,它应为:ß

最佳答案

解决了自己:

WebClient client = new WebClient();
 client.Encoding = Encoding.UTF8; // Specify the encoding here

关于c# - 使用JSON Web服务时出现奇怪的字符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8839070/

10-09 10:21