冰楓論壇

標題: 還在用Inet控件(MSINET.OCX)嗎?這個模組簡單多了! [打印本頁]

作者: ai1118    時間: 2014-7-14 09:14
標題: 還在用Inet控件(MSINET.OCX)嗎?這個模組簡單多了!
Author: Inndy
Source: 別再用MSINET.OCX了,用這個模組簡單多了

這個模組能做甚麼?他能取代VB控件Inet,更簡單更活用,也不必再調用MSINET.OCX就能用VB讀取網路上的文字資料!

請在VB當中新增一個模組 modDownload
  1. ' HTTP Downloading Module By Inndy
  2. Option Explicit
  3. ' For API
  4. Private Const CP_ACP = 0        ' default to ANSI code page
  5. Private Const CP_UTF8 = 65001   ' default to UTF-8 code page
  6. Private Declare Function MultiByteToWideChar Lib "kernel32" (ByVal CodePage As Long, ByVal dwFlags As Long, ByVal lpMultiByteStr As Long, ByVal cchMultiByte As Long, ByVal lpWideCharStr As Long, ByVal cchWideChar As Long) As Long
  7. Private Declare Function WideCharToMultiByte Lib "kernel32" (ByVal CodePage As Long, ByVal dwFlags As Long, ByVal lpWideCharStr As Long, ByVal cchWideChar As Long, ByVal lpMultiByteStr As Long, ByVal cchMultiByte As Long, ByVal lpDefaultChar As Long, ByVal lpUsedDefaultChar As Long) As Long
  8. ' For module
  9. Public Enum Encode
  10.     ANSI = 0
  11.     BIG5 = 1
  12.     UTF8 = 2
  13. End Enum

  14. Private Function ToUTF8(ByVal sData As String) As Byte()
  15.     Dim aRetn() As Byte, nSize As Long
  16.     nSize = WideCharToMultiByte(CP_UTF8, 0, StrPtr(sData), -1, 0, 0, 0, 0)
  17.     ReDim aRetn(0 To nSize - 1) As Byte
  18.     WideCharToMultiByte CP_UTF8, 0, StrPtr(sData), -1, VarPtr(aRetn(0)), nSize, 0, 0
  19.     ToUTF8 = aRetn
  20. End Function

  21. Private Function FromUTF8(ByVal sData As String) As Byte()
  22.     Dim aRetn() As Byte, nSize As Long
  23.     nSize = MultiByteToWideChar(CP_UTF8, 0, StrPtr(sData), -1, 0, 0)
  24.     ReDim aRetn(0 To 2 * nSize - 1) As Byte
  25.     MultiByteToWideChar CP_UTF8, 0, StrPtr(sData), -1, VarPtr(aRetn(0)), nSize
  26.     FromUTF8 = aRetn
  27. End Function

  28. Public Function DownloadData(ByVal url As String) As Byte()
  29.     Dim http As Object
  30.     Set http = CreateObject("MSXML2.ServerXMLHTTP")
  31.     http.Open "GET", url, False
  32.     http.setRequestHeader "Pragma", "no-cache"
  33.     http.send
  34.     DownloadData = http.responseBody
  35.     Set http = Nothing
  36. End Function

  37. Public Function DownloadString(ByVal url As String, Optional ByVal EncType As Encode = Encode.BIG5) As String
  38.     If EncType = Encode.ANSI Then
  39.         DownloadString = DownloadData(url)
  40.     ElseIf EncType = Encode.BIG5 Then
  41.         DownloadString = StrConv(DownloadData(url), vbUnicode)
  42.     Else
  43.         DownloadString = FromUTF8(DownloadData(url))
  44.     End If
  45. End Function

  46. Public Function DownloadFile(ByVal url As String, ByVal file As String) As Boolean
  47.     On Error GoTo Failed
  48.     Dim f As Integer
  49.     f = FreeFile
  50.     Open file For Binary As f
  51.     Put f, , DownloadData(url)
  52.     Close f
  53.     DownloadFile = True
  54.     Exit Function
  55. Failed:
  56.     DownloadFile = False
  57. End Function
複製代碼
[size=100%]來源: knowlet3389.blogspot.tw






歡迎光臨 冰楓論壇 (https://bingfong.com/) Powered by 冰楓