wince 请求html页面出现乱码怎么办

来源:百度知道 编辑:UC知道 时间:2024/06/28 21:34:40

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
如果是纯HTML页面在<head>里加上上面的编码 定义字体。

<html>
<title></title>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
</head>
<body>
</body>
</html>