【在线等...大家解决乱码问题啊!我谢谢大家伙了!......

zhw2ll 2004-04-27 03:19:53
后台是solaris系统 [tomcat4]
-------------------------------------------
如果仅仅通过浏览器的地址栏输入:
http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=我们可以聊聊么
----手机(13909910000)上收到的文字就是正常的中文"我们可以聊聊么"

但是创建一个httpwebrequest实例,通过get或post发起一个请求,手机上却是乱码。如下:
Private Sub smsSend_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
dim strurl as string="http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=我们可以聊聊么"

Dim httpReq As HttpWebRequest = CType(WebRequest.Create(strurl),HttpWebRequest)
httpReq.Method = "GET"
Dim httpresp As HttpWebResponse
httpresp = CType(httpReq.GetResponse(), HttpWebResponse)
msgbox("发送成功!")
End Sub
-------------------------------------
请问:
出现乱码的原因?
如何解决?(望给出源码例子)
---------------------------------------
谢谢了! 我快急疯了啊!!!
方便给我回信也可:oomph@163.com 望高手关注.
...全文
48 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
ganenpingsohucom 2004-04-27
  • 打赏
  • 举报
回复
agree saucer(思归/MVP)
shyyu 2004-04-27
  • 打赏
  • 举报
回复
dim strurl as string="http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=" & HttpUtility.UrlEncode("我们可以聊聊么", System.Text.Encoding.Default)

or

dim strurl as string="http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=" & HttpUtility.UrlEncode("我们可以聊聊么", System.Text.Encoding.GetEncoding("GB2312"))
or

dim strurl as string="http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=" & HttpUtility.UrlEncode("我们可以聊聊么", System.Text.Encoding.UTF8
这样就OK了呀!!!!!!!!!!!!!
saucer 2004-04-27
  • 打赏
  • 举报
回复
try


dim strurl as string="http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=" & HttpUtility.UrlEncode("我们可以聊聊么", System.Text.Encoding.Default)

or

dim strurl as string="http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=" & HttpUtility.UrlEncode("我们可以聊聊么", System.Text.Encoding.GetEncoding("GB2312"))
or

dim strurl as string="http://×.×.×.×/webapp/smsSendServlet?mobid=13909910000&msg=" & HttpUtility.UrlEncode("我们可以聊聊么", System.Text.Encoding.UTF8)
terryxin 2004-04-27
  • 打赏
  • 举报
回复
dang

16,554

社区成员

发帖
与我相关
我的任务
社区描述
VB技术相关讨论,主要为经典vb,即VB6.0
社区管理员
  • VB.NET
  • 水哥阿乐
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧