字符 Å Ä Ö 没有显示在我的 DDL 中,我如何告诉 restclient 使用特定的字符集?
Posted
技术标签:
【中文标题】字符 Å Ä Ö 没有显示在我的 DDL 中,我如何告诉 restclient 使用特定的字符集?【英文标题】:Characters Å Ä Ö is not getting displayed in my DDL, how can I tell restclient to utilize a specific charset? 【发布时间】:2012-05-23 19:27:55 【问题描述】:在我开始之前是问题所在。应该是这样的:
Björn Nilsson,而不是显示奇怪的特殊字符,所有具有字符 Å、Ä 和 Ö 的值都变成这样。
我用 XML 格式的 API 中的值填充我的 DDL,其中包含所有值,我们也为此使用 Linq2Rest。
流程是这样的
private readonly RestContext<ADConsultants> restContext;
public ConsultantContext(Uri uri, Format format)
restContext = new RestContext<ADConsultants>(GetRestClient(uri, format), GetSerializerFactory(format));
public enum Format
Pox,
Json
private static readonly IEnumerable<Type> knownTypes = new[] typeof (ADConsultants);
public static IRestClient GetRestClient(Uri uri, Format format)
switch (format)
case Format.Pox:
return new XmlRestClient(uri);
case Format.Json:
return new JsonRestClient(uri);
default:
throw new NotImplementedException();
private static ISerializerFactory GetSerializerFactory(Format format)
switch (format)
case Format.Pox:
return new XmlSerializerFactory(knownTypes);
case Format.Json:
return new JsonNetSerializerFactory();
default:
throw new NotImplementedException();
public IQueryable<ADConsultants> Consultant
get return restContext.Query;
这是我的 JsonNetSerializerFactory 类:
public class JsonNetSerializerFactory :ISerializerFactory
public ISerializer<T> Create<T>()
return new JsonNetSerializer<T>();
public class JsonNetSerializer<T> : ISerializer<T>
public T Deserialize(string input)
return JsonConvert.DeserializeObject<T>(input);
public IList<T> DeserializeList(string input)
return JsonConvert.DeserializeObject<IList<T>>(input);
这是在我的控制器内部:
var consultants = new ConsultantContext(
new Uri("http://adress:port/api/consultants"),
ConsultantContext.Format.Json)
.Consultant
.Where(x => x.Office == "Örebro")
.OrderBy(x => x.DisplayName)
.ToList()
.Select(x => new
name = x.DisplayName
);
我通过这样做做了一个测试:
name = "åäö"
它运行良好,ddl 值为“åäö”
感谢任何有关如何修复字符 Å Ä Ö 的帮助,作为我的 DDL 中的值。
HTTP 标头是 utf-8,我的 html 内容也有。必须是需要设置为特定字符集的 XML,我该怎么做?
提前致谢!
【问题讨论】:
你输出的内容编码是什么?看起来您的数据层输出 UTF-8,但表示层将其声明为其他编码。 我不明白你的问题,但我在整个内容上使用 【参考方案1】:理论上你遇到了字符集编码/解码问题。
原因:您尝试阅读的内容已使用 iso-8859-1 或 iso-8859-15 等字符集进行编码。您将尝试将其直接读取(解码)为“UTF-8”字符模型。当然它不会起作用,因为 UTF-8 因为 UTF-8 奇迹般地无法识别您的特殊字符(Ä、Ü、Ö 等等..)。 UTF-8 不是字符编码的猜测者。
解决方案:
1-(重新)将您的内容(例如“Björn Nilsson”)及其相应的字符集 (iso-8859-1/iso-8859-15) 编码到字节集合中。
2- 将您的内容解码为基于“UTF-8”的字符集。
这里以 Helper 类为例:
using System;
using System.Collections.Generic;
using System.Text;
namespace csharp.util.charset
public class SysUtil
/// <summary>
/// Convert a string from one charset to another charset
/// </summary>
/// <param name="strText">source string</param>
/// <param name="strSrcEncoding">original encoding name</param>
/// <param name="strDestEncoding">dest encoding name</param>
/// <returns></returns>
public static String StringEncodingConvert(String strText, String strSrcEncoding, String strDestEncoding)
System.Text.Encoding srcEnc = System.Text.Encoding.GetEncoding(strSrcEncoding);
System.Text.Encoding destEnc = System.Text.Encoding.GetEncoding(strDestEncoding);
byte[] bData=srcEnc.GetBytes(strText);
byte[] bResult = System.Text.Encoding.Convert(srcEnc, destEnc, bData);
return destEnc.GetString(bResult);
用法:
在您的(JSON-、XML、其他)序列化器/反序列化器类中,只需像这样转换您的内容
String content = "Björn Nilsson";
SysUtil.StringEncodingConvert(content, "ISO-8859-1","UTF-8");
你可以尝试在你的反序列化器中进行调用(如果他们真的按照他们的意思做的话):
public class JsonNetSerializerFactory :ISerializerFactory
public ISerializer<T> Create<T>()
return new JsonNetSerializer<T>();
public class JsonNetSerializer<T> : ISerializer<T>
public T Deserialize(string input, String fromCharset, String toCharset)
String changedString = SysUtil.StringEncodingConvert(input, fromCharset,toCharset);
return JsonConvert.DeserializeObject<T>(changedString );
public IList<T> DeserializeList(string input, String fromCharset, String toCharset)
String changedString = SysUtil.StringEncodingConvert(input, fromCharset,toCharset);
return JsonConvert.DeserializeObject<IList<T>>(changedString);
这是给你的
JsonNetSerializerFactory
请尝试为其他工厂做同样的事情,例如
XmlSerializerFactory
不要忘记您在 HTML 页面中的设置
<meta charset="utf-8"> <!--HTML 5 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <!-- if HTML version < 5-->
【讨论】:
你能给我一个例子,在我的代码中我应该输入 SysUtil.StringEncodingConvert(xmlContent, "ISO-8859-1","UTF-8"); @RammtinAvar 我编辑了我的答案并提出了将其放置在代码中的位置的建议。请注意,它可能不起作用,因为我不知道你是如何完全编码你的东西的。让我知道它是否失败,以便您可以在聊天中继续此操作。如果它有效,别忘了给我的答案投票。【参考方案2】:文本的字符集与浏览器解释为字符集的字符集之间很可能不匹配。
您是否有用于内容或字符集的<meta>
标记?
鉴于您发送的字符集是 UTF-8,并且您使用的是 HTML5,这将是合适的标签
<meta charset="utf-8">
或者在早期版本的 HTML 中
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
对于iso-8859-1
或任何其他字符集,只需替换charset
属性即可。
【讨论】:
您确定服务器将数据发送为 utf-8 吗?您是否尝试过让浏览器尝试其他字符集? 是的,我已经做到了,会不会是 linq2rest 搞砸了? 手动设置上下文的字符集有帮助吗?consultants.Response.Charset = Encoding.UTF8.WebName;
我应该在哪里输入:S
我猜你可以在public ConsultantContext
用restContext
替换consultants
来做到这一点以上是关于字符 Å Ä Ö 没有显示在我的 DDL 中,我如何告诉 restclient 使用特定的字符集?的主要内容,如果未能解决你的问题,请参考以下文章
UTF-8 with mysql and php in freebsd swedish chars (åäö) [重复]