1
Dim http As WinHttpRequest
Set http = New WinHttpRequest 
http.open "POST", "test.php", False
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
http.send "txtmbx=test"
msgbox(http.responsetext)

http.responsetext是西里尔文,我无法阅读文字。如何检索西里尔字母?

4

1 回答 1

0

WinHTTPRequest支持编码方法,虽然它没有明确说明,但我希望它CP_ACP在将接收到的字节数据转换为字符串时使用系统默认代码页。

您可以使用该ResponseBody方法将数据作为字节数组获取,并根据StrConv需要转换为字符串。

于 2012-02-08T11:23:25.650 回答