- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我花了很长时间搜索社区论坛来找到可行的解决方案。它看起来很简单,我需要通过 GET 方法发送 HTTP 请求传递参数,但服务器端服务需要以 ISO-8895-2 编码的 URI。我使用.NET System.net 类 HttpWebRequest。我的代码:
String myURI = (this._services + "?" + this._request);
HttpWebRequest request = HttpWebRequest.Create(myURI) as HttpWebRequest;
request.ContentType = "application/x-www-form-urlencoded, charset=iso-8859-2";
request.Method = "GET";
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
this._respStream = response.GetResponseStream();
现在的问题是如何将字符串 myURI 编码为 ISO-8859-2。如果我采取任何措施,字符串将表示为 utf-8。我尝试了本论坛中描述的几种转换,请参阅示例:
System.Text.Encoding iso_8859_2 = System.Text.Encoding.GetEncoding("iso-8859-2");
byte[] iso592 = iso_8859_2.GetBytes(myURI);
String isoURI = iso_8859_2.GetString(iso592, 0, iso592.Length);
字节序列 iso592 始终相同,即使我使用 utf-8 或 windows-1250 编码也是如此。我读过一些文章,.NET 字符串总是像 unicode 一样表示。那么现在该怎么办呢。有什么方法可以使用 ISO 编码的 URI 创建 WebRequest 实例吗?当我切换到 POST 方法,然后将数据流式传输到 HTTP header 时,如下所示:
Encoding iso_8859_2 = System.Text.Encoding.GetEncoding("iso-8859-2");
byte[] isoData = iso_8859_2.GetBytes(getUrl);
HttpWebRequest request = HttpWebRequest.Create(this._services) as HttpWebRequest;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded; charset=iso-8859-2";
request.ContentLength = isoData.Length;
Stream header = request.GetRequestStream();
header.Write(isoData, 0, isoData.Length);
header.Close();
一切正常,但我必须使用 GET 方法。
最佳答案
这里的问题是
... URI schemes ... should convert all other characters to bytes according to UTF-8, and then percent-encode those values.
所以你不能使用标准方法来实现目标。有问题的方法是 HttpWebRequest.Create(myURI),它对请求进行编码并使其成为 UTF-8(和 % 编码)。为了避免这种情况,您需要在使用 HttpWebRequest.Create
这是我的例子。首先,我编写了执行二进制 % 编码的简单函数:
private string URLEncodeBin(byte[] bytes)
{
string s = "";
foreach (byte b in bytes) // encoding every byte
s += "%" + b.ToString("X2"); // format - 2 digits HEX
return s;
}
然后我就这样使用了
// creating %-encoded data from iso-8859-2 string
System.Text.Encoding iso_8859_2 = System.Text.Encoding.GetEncoding("iso-8859-2");
byte[] bytes = iso_8859_2.GetBytes("ĄĽŚŠŤŹŽąľśˇšťźž"); // for example
string data=URLEncodeBin(bytes);
// forming request
this._request = "a=" + data;
String myURI = (this._services + "?" + this._request);
HttpWebRequest request = HttpWebRequest.Create(myURI) as HttpWebRequest;
request.Method = "GET";
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
this._respStream = response.GetResponseStream();
您应该仅对参数进行编码,而不是对所有请求进行编码。而 request.ContentType = "application/x-www-form-urlencoded, charset=iso-8859-2";
是没有意义的,因为你没有内容,只有 URL。
这个想法是绝对独立于平台的,我不知道为什么还没有人弄清楚。
关于encoding - httpgetrequest uri 编码为 iso-8859-2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19821422/
您好,我花了很长时间搜索社区论坛来找到可行的解决方案。它看起来很简单,我需要通过 GET 方法发送 HTTP 请求传递参数,但服务器端服务需要以 ISO-8895-2 编码的 URI。我使用.NET
我是一名优秀的程序员,十分优秀!