类型为“ application / x-www-form-urlencoded”的C#HttpWebRequest-如何在内容主体中发送\'&\'字符?
|
我正在用C#编写一个连接API的小型应用程序。
我连接到一个API,该API的方法需要一个长字符串,即calendar(ics)文件的内容。
我正在这样做:
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(URL);
request.Method = \"POST\";
request.AllowAutoRedirect = false;
request.CookieContainer = my_cookie_container;
request.Accept = \"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";
request.ContentType = \"application/x-www-form-urlencoded\";
string iCalStr = GetCalendarAsString();
string strNew = \"&uploadfile=true&file=\" + iCalStr;
using (StreamWriter stOut = new StreamWriter(request.GetRequestStream(), System.Text.Encoding.ASCII))
{
stOut.Write(strNew);
stOut.Close();
}
在我在日历中添加一些特定的HTML之前,这似乎工作得很好。
如果我在日历中(或类似地方)的某个地方有一个\'&nbsp \',则服务器只会获取所有数据到\'&\'点,因此我假设\'&\'使它看起来像像这个点之后的任何东西都属于新参数?
我怎样才能解决这个问题?
没有找到相关结果
已邀请:
3 个回复
骇毖煽洁铂
,因此您需要对POST正文进行编码,尤其是当它包含诸如
之类的具有特殊含义的字符时。 在将字符串写入请求流之前,请尝试通过HttpUtility.UrlEncode传递字符串。 这里有几个链接供参考。 http://en.wikipedia.org/wiki/Percent-encoding http://aspnetresources.com/blog/encoding_forms
抚驰
然后使用以下功能发布数据:
这是如何使用它:
要么
或(不推荐)
壬驴拿歪竞
。 .NET为您提供了一种编码整个字符串的好方法: