Fix garbled title when XmlHttp captures data

Source: Internet
Author: User
Internal Code title. use this code. I have simplified it. the following content is referenced when the XMLHTTP crawling address is used: FunctionGetBody (Url) DimobjXMLOnErrorResumeNextSetobjXML = CreateObject (Microsoft. XMLHTTP) Wi

Internal Code Title. use this code. I have simplified it.

Apply XMLHTTP to capture the address and process the content concurrently
Reference content is as follows:
Function GetBody (Url)
Dim objXML
On Error Resume Next
Set objXML = CreateObject ("Microsoft. XMLHTTP ")
With objXML
. Open "Get", Url, False ,"",""
. Send
GetBody =. ResponseBody
End
GetBody = BytesToBstr (GetBody, "GB2312 ")
Set objXML = Nothing
End Function

Use Adodb. Stream to process binary data
Reference content is as follows:
Function BytesToBstr (strBody, CodeBase)
Dim objStream
Set objStream = Server. CreateObject ("Adodb. Stream ")
ObjStream. Type = 1
ObjStream. Mode = 3
ObjStream. Open
ObjStream. Write strBody
ObjStream. Position = 0
ObjStream. Type = 2
ObjStream. Charset = CodeBase
BytesToBstr = objStream. ReadText
ObjStream. Close
Set objStream = nothing
End Function



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.