溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么解決Web亂碼的問題

發(fā)布時間:2021-11-25 15:46:45 來源:億速云 閱讀:139 作者:柒染 欄目:web開發(fā)

本篇文章為大家展示了怎么解決Web亂碼的問題,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

Web數(shù)據(jù)提交有兩種方法:GET 和 POST。關(guān)于這兩種方法的介紹,請看這里:Http之Get/Post請求區(qū)別。我在這里要介紹的是如何在程序中獲取HTTPRequest數(shù)據(jù),并成功解決編碼不同時所引起亂碼的問題。

現(xiàn)在我們開始,先看一段HTML代碼:

<!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> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>無標題文檔</title> </head>  <body>     <form id="myForm" action="http://localhost:9000/WebForm1.aspx" method="post">         名稱:<input tyep="text" name="name" width="200px" value="獨釣寒江"/>         <br />         年齡:<input tyep="text" name="age" width="200px" value="24"/>         <br />         <br />         <input type="submit" value="提交" />     </form> </body> </html>

在這個HTML文件中,我們使用的編碼是GB2312,F(xiàn)orm表單中包含name和age兩個數(shù)據(jù)。首先將method設(shè)置為GET方法:

<form id="myForm" action="http://localhost:9000/WebForm1.aspx" method="GET">

另外我們再新建一個Web應(yīng)用程序,并在本地新建一個站點,將端口設(shè)置為9000,添加一個頁面,名稱為WebForm1.aspx,也就是上面Form表單中的action所指向的地址http://localhost:9000/WebForm1.aspx

在點擊“提交”按鈕的時候,我們可以在WebForm1中獲取到網(wǎng)頁的參數(shù),具體有如下幾種方式:

Request["name"]  Request.Params["name"]  Request.QueryString["name"]

這三種方法得到的字符串都是經(jīng)過默認編碼轉(zhuǎn)換的,因為我們使用vs建立項目時編碼默認為UTF-8,所以這時便會出現(xiàn)亂碼。這是***種問題,稍候我們將解決這個問題。

接下來將method設(shè)置為POST方法:

<form id="myForm" action="http://localhost:9000/WebForm1.aspx" method="POST">

在點擊“提交”按鈕的時候,我們可以在WebForm1中獲取到網(wǎng)頁的參數(shù),具體有如下幾種方式:

Request["name"]  Request.Params["name"]  Request.Form["name"]

和***種問題相同,經(jīng)過默認的UTF-8轉(zhuǎn)換,這里還會出現(xiàn)亂碼。這是第二種問題。

問題一的解決方法:

StringBuilder sb = new StringBuilder();  IServiceProvider provider = (IServiceProvider)HttpContext.Current;  HttpWorkerRequest worker = (HttpWorkerRequest)provider.GetService(typeof(HttpWorkerRequest));  byte[] bs = worker.GetQueryStringRawBytes();  String queryString = Encoding.GetEncoding("GB2312").GetString(bs);  NameValueCollection querys = HttpUtility.ParseQueryString(queryString, Encoding.GetEncoding("GB2312"));   foreach (var item in querys.Keys)  {      sb.AppendFormat("{0}:{1}<br />", item.ToString(), querys[item.ToString()]);  }

問題二的解決方法:

// 獲取到InputStream  System.IO.Stream str = Request.InputStream;  Int32 strLen, strRead;  strLen = Convert.ToInt32(str.Length);  byte[] strArr = new byte[strLen];  strstrRead = str.Read(strArr, 0, strLen);                string queryString = HttpUtility.UrlDecode(strArr, System.Text.Encoding.GetEncoding("GB2312"));   NameValueCollection querys = HttpUtility.ParseQueryString(queryString, Encoding.GetEncoding("GB2312"));   foreach (var item in querys.Keys)  {      sb.AppendFormat("{0}:{1}<br />", item.ToString(), querys[item.ToString()]);  }

另外,對于***種方法,還可以直接將URL用GB2312解碼,這里不再貼出代碼。

有了這兩種方法,不管是怎樣的亂碼,都可以高枕無憂了。

上述內(nèi)容就是怎么解決Web亂碼的問題,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

web
AI