如何查看网页设计时的文字编码类型 ?
我知道的有一个ASCII编码,GBK编码,还有UTF-8编码,为什么文字要进行编码,编码什么意思?还有就是如何查看自己网站的文字编码类型...
我知道的有一个ASCII编码,GBK编码,还有UTF-8编码,为什么文字要进行编码,编码什么意思?还有就是如何查看自己网站的文字编码类型
展开
3个回答
展开全部
可以通过以下方法来进行编码格式判断,输入一个字符串,之后返回字符串编码类型。
public static String getEncoding(String str) {
String encode = "GB2312";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是GB2312
String s = encode;
return s; //是的话,返回“GB2312“,以下代码同理
}
} catch (Exception exception) {
}
encode = "ISO-8859-1";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是ISO-8859-1
String s1 = encode;
return s1;
}
} catch (Exception exception1) {
}
encode = "UTF-8";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是UTF-8
String s2 = encode;
return s2;
}
} catch (Exception exception2) {
}
encode = "GBK";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是GBK
String s3 = encode;
return s3;
}
} catch (Exception exception3) {
}
return ""; //如果都不是,说明输入的内容不属于常见的编码格式。
public static String getEncoding(String str) {
String encode = "GB2312";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是GB2312
String s = encode;
return s; //是的话,返回“GB2312“,以下代码同理
}
} catch (Exception exception) {
}
encode = "ISO-8859-1";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是ISO-8859-1
String s1 = encode;
return s1;
}
} catch (Exception exception1) {
}
encode = "UTF-8";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是UTF-8
String s2 = encode;
return s2;
}
} catch (Exception exception2) {
}
encode = "GBK";
try {
if (str.equals(new String(str.getBytes(encode), encode))) { //判断是不是GBK
String s3 = encode;
return s3;
}
} catch (Exception exception3) {
}
return ""; //如果都不是,说明输入的内容不属于常见的编码格式。
展开全部
看这个 HTML 页面:
XML/HTML code?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="culture_Default3" Culture="auto" meta:resourcekey="PageResource1" UICulture="auto" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Sample Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label3" runat="server" Text="<%$ Resources: Resource, PrivacyStatement %>"></asp:Label>
<hr />
<asp:Label ID="Label1" runat="server" Text="What is your name?" meta:resourcekey="Label1Resource1"></asp:Label><br />
<br />
<asp:TextBox ID="TextBox1" runat="server" meta:resourcekey="TextBox1Resource1"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Submit name" meta:resourcekey="Button1Resource1" />
<br />
<asp:Label ID="Label2" runat="server" meta:resourcekey="Label2Resource1" ></asp:Label>
</div>
</form>
</body>
</html>
然后在文件夹中建立 App_localResources 文件夹,这个是一个特殊文件夹。
在这个文件夹下建立资源文件,名称修改为 Default3.aspx.resx,表示这个一个未指定语言的页面资源。建立 Default3.aspx.zh-CN.resx,表示这个是简体中文的页面资源。
XML/HTML code?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="culture_Default3" Culture="auto" meta:resourcekey="PageResource1" UICulture="auto" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Sample Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label3" runat="server" Text="<%$ Resources: Resource, PrivacyStatement %>"></asp:Label>
<hr />
<asp:Label ID="Label1" runat="server" Text="What is your name?" meta:resourcekey="Label1Resource1"></asp:Label><br />
<br />
<asp:TextBox ID="TextBox1" runat="server" meta:resourcekey="TextBox1Resource1"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Submit name" meta:resourcekey="Button1Resource1" />
<br />
<asp:Label ID="Label2" runat="server" meta:resourcekey="Label2Resource1" ></asp:Label>
</div>
</form>
</body>
</html>
然后在文件夹中建立 App_localResources 文件夹,这个是一个特殊文件夹。
在这个文件夹下建立资源文件,名称修改为 Default3.aspx.resx,表示这个一个未指定语言的页面资源。建立 Default3.aspx.zh-CN.resx,表示这个是简体中文的页面资源。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
查看源代码:<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询