以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  [求助]HttpClient  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=120597)

--  作者:谢天钰
--  发布时间:2018/6/20 11:13:00
--  [求助]HttpClient
代码如下
            Dim hc As New HttpClient("http://123.57.228.173:9088/ehr/IhttpDo.do?method=upLoad" & "&ID=" & sfzh & "&DEPT=" & csz("区域编码") & "&TYPE=" & bbm)
            hc.Timeout = 5 \'设置超时为5秒
            hc.Content = zf
            Dim ret As String = hc.GetData()
            
            Output.Show(ret)

返回的是: ERROR:??????=220422197410252837  ?????? ??
乱码这个要怎么处理?
[此贴子已经被作者于2018/6/20 11:13:10编辑过]

--  作者:有点甜
--  发布时间:2018/6/20 11:25:00
--  

Dim hc As New HttpClient("http://123.57.228.173:9088/ehr/IhttpDo.do?method=upLoad")
hc.Timeout = 5 \'设置超时为5秒
hc.ResponseEncoding = "GB2312"
Dim ret As String = hc.GetData()

Output.Show(ret)