`
gstarwd
  • 浏览: 1536598 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Server.UrlEncode、HttpUtility.UrlDecode不同编码

    博客分类:
  • .NET
阅读更多

Server.UrlEncode、HttpUtility.UrlDecode不同编码

同样的Server.UrlEncode在不同页面居然编码后的字符不同,后来查了查原来..

在对URL进行编码时,该用哪一个?这两都使用上有什么区别吗?
测试:
string file="文件上(传)篇.doc";
string Server_UrlEncode=Server.UrlEncode(file);
string Server_UrlDecode=Server.UrlDecode(Server_UrlEncode);
string HttpUtility_UrlEncode=System.Web.HttpUtility.UrlEncode(file);
string HttpUtility_UrlDecode=System.Web.HttpUtility.UrlDecode(HttpUtility_UrlEncode);
Response.Write("原数据:"+file);
SFun.WriteLine("Server.UrlEncode:"+Server_UrlEncode);
SFun.WriteLine("Server.UrlDecode:"+Server_UrlDecode);
SFun.WriteLine("HttpUtility.UrlEncode:"+HttpUtility_UrlEncode);
SFun.WriteLine("HttpUtility.UrlDecode:"+HttpUtility_UrlDecode);

输出:
原数据:文件上(传)篇.doc 
Server.UrlEncode:%ce%c4%bc%fe%c9%cf%a3%a8%b4%ab%a3%a9%c6%aa.doc
Server.UrlDecode:文件上(传)篇.doc
HttpUtility.UrlEncode:%e6%96%87%e4%bb%b6%e4%b8%8a%ef%bc%88%e4%bc%a0%ef%bc%89%e7%af%87.doc
HttpUtility.UrlDecode:文件上(传)篇.doc

区别在于:HttpUtility.UrlEncode()默认是以UTF8对URL进行编码,而Server.UrlEncode()则以默认的编码对URL进行编码。

在用 ASP.Net 开发页面的时候, 我们常常通过 System.Web.HttpUtility.UrlEncode 和 UrlDecode 在页面间通过 URL 传递参数. 成对的使用 Encode 和 Decode 是没有问题的.

但是, 我们在编写文件下载的页面的时候, 常常用如下方法来指定下载的文件的名称:
Response.AddHeader("Content-Disposition","attachment; filename="
+ HttpUtility.UrlEncode(fileName, Encoding.UTF8));
之所以转换成 UTF8 是为了支持中文文件名.

这 时候问题就来了, 因为 HttpUtility.UrlEncode 在 Encode 的时候, 将空格转换成加号('+'), 在 Decode 的时候将加号转为空格, 但是浏览器是不能理解加号为空格的, 所以如果文件名包含了空格, 在浏览器下载得到的文件, 空格就变成了加号.

一个解决办法是, 在 HttpUtility 的 UrlEncode 之后, 将 "+" 替换成 "%20"( 如果原来是 "+" 则被转换成 "%2b" ) , 如: 
fileName = HttpUtility.UrlEncode(fileName, Encoding.UTF8); 
fileName = fileName.Replace("+", "%20"); 
不明白微软为什么要把空格转换成加号而不是"%20". 记得 JDK 的 UrlEncoder 是将空格转换成 "%20"的.
经检查, 在 .Net 2.0 也是这样.



上 面是从别的地方拷贝的,写得很好,我自己的一个程序中也遇到同样的问题,默认aspx是以utf-8为编码的,在我这个程序中必须用gb2312为默认编 码(<globalization requestEncoding="gb2312" responseEncoding="gb2312"/>),问题出现了,以前没有问题的HttpUtility.UrlDecode在 Page.Request回的值是乱码这就是上面说的HttpUtility.UrlDecode默认以UTF8对URL进行编码,这种情况下面只需将 HttpUtility.UrlDecode改成Server.UrlEncode即可。

分享到:
评论

相关推荐

    网络传输文本,urlEncode和decode的实现。

    除了基本的`UrlEncode`和`UrlDecode`,还有针对特定编码集(如UTF-8、GBK等)的版本,如`UrlEncodeUnicode`和`UrlDecodeUnicode`。这些方法对于处理包含多种语言或特殊字符的文本尤其有用。 在实际应用中,`...

    关于URL编码

    除了`HttpUtility`类,ASP.NET还提供了`Server`对象,它也包含了`UrlEncode`和`UrlDecode`方法,这使得在ASP.NET页面中处理URL编码变得非常方便。`Server.UrlEncode`和`Server.UrlDecode`与`HttpUtility`类中的方法...

    js中escape对应的C#解码函数 UrlDecode

    1. **方法类型**:`HttpUtility.UrlEncode`和`HttpUtility.UrlDecode`是静态方法,而`Server.UrlEncode`和`Server.UrlDecode`是实例方法,需要通过`HttpServerUtility`类的实例(如`Page`类的`Server`属性)来调用。...

    asp页面和Asp.net页面传中文参数UrlEncode编码以及接收解码

    str=”+HttpUtility.UrlEncode(str) ,解码方式为HttpUtility.UrlDecode(Request.QueryString[“str”].ToString().Trim()) asp的Get方式传送为”webPage.aspx?str=”+server.urlencode(str) 两种编码不统一 解决方案...

    asp.net页面通过URL参数传值中文乱码问题解决办法

    在传递中文参数时,可以使用`Server.UrlEncode()`函数对中文字符进行编码,然后在接收端使用`Server.UrlDecode()`进行解码。例如: - 发送端: ```csharp string Name = "中文参数"; Response.Redirect("B.aspx...

    url传递中文

    在服务器端,可以使用`Server.UrlEncode()`和`Server.UrlDecode()`方法。例如: ```csharp // 传递中文参数 string Name = "中文参数"; Response.Redirect("B.aspx?Name=" + Server.UrlEncode(Name)); // 接收中文...

    asp自定义函数:URL编码和解码

    然而,现代的ASP.NET框架提供了内置的HttpUtility.UrlEncode和HttpUtility.UrlDecode方法,这些方法更加高效和安全,建议在可能的情况下使用这些内置函数。但在旧的ASP项目中,自定义函数仍是一种实用的解决方案。

    .Net获取URL中文参数值的乱码问题解决方法总结

    总结来说,解决.NET中URL中文参数值乱码问题的方法主要包括在web.config中进行全局编码设置、使用Server.UrlEncode和Server.UrlDecode方法编码解码参数、使用JavaScript的escape函数、以及在编程中使用...

    asp.net Cookie值中文乱码问题解决方法

    在ASP.NET中,我们可以使用`System.Web.HttpContext.Current.Server.UrlEncode`方法对中文字符串进行编码,然后再使用`System.Web.HttpContext.Current.Server.UrlDecode`方法进行解码,以确保数据在Cookie中的正确...

    C#自动识别URL编码,asp.net自动识别URL编码

    解决方法是在发送请求前使用`UrlEncode`对查询字符串进行编码,或者在接收时使用`UrlDecode`进行解码。 - **编码与解码不匹配**: 如果编码使用的编码方式与解码时的编码方式不一致,也可能导致乱码。确保始终使用...

    winform的字符串转换 UrlEncode

    要使用`UrlEncode`函数,首先需要引用`System.Web`命名空间,因为它包含`HttpUtility`类,这个类提供了`UrlEncode`和`UrlDecode`方法。下面是一个简单的示例: ```csharp using System; using System.Web; ...

    url加密URL编码 如“exit”编码为“%65%78%69%74”.zip

    当需要恢复原始字符串时,可以使用`HttpUtility.UrlDecode`方法: ```csharp string decoded = HttpUtility.UrlDecode(encoded); // decoded 的值为 "exit" ``` 3. **编码特定字符集**: 在某些情况下,可能...

    URL编码.net4 环境

    5. **解码**: 对于已经编码的URL,可以使用`HttpUtility.UrlDecode`或`HttpServerUtility.UrlDecode`来解码。这两个方法会将百分号编码的字符串还原为原始字符。 6. **编码特定字符**: 有时,我们可能需要仅编码URL...

    URL编码转换器(C#源码)

    2. **URL解码**:如果需要将已编码的URL还原,可以使用`HttpUtility.UrlDecode()`方法。例如: ```csharp string decodedUrl = HttpUtility.UrlDecode(encodedUrl); ``` **项目结构** 在提供的文件列表中,我们...

    web开发中实用的js技巧

    string tradeName = System.Web.HttpUtility.UrlDecode(Request.QueryString["TradeName"].ToString()); string model = System.Web.HttpUtility.UrlDecode(Request.QueryString["model"].ToString()); string ...

    asp.net URL编码与解码

    开发者可以使用.NET内置的类和方法(例如HttpUtility.UrlEncode 和 HttpUtility.UrlDecode)来进行编码和解码操作,确保数据传输的安全性和准确性。 8. 注意事项: - 在进行URL编码时,应确保编码后的URL符合RFC...

    Javascript UrlDecode函数代码

    有时候可能会有这么一个需求,我在后台使用: 代码如下: HttpUtility.UrlEncode(str, System.Text.Encoding.UTF8); 将Url进行编码,前台JS需要使用这段内容,这时候就需要解码了: 代码 代码如下: /** * Url编码 **/ ...

Global site tag (gtag.js) - Google Analytics