zoukankan      html  css  js  c++  java
  • vb word

    http://www.yesadmin.com/360/108991/index.html

    Public Function GetCode(CodeBase, Url) '第一个参数是设置编码方式(GB2312或UTF-8)第二个参数是地址.
        Dim xmlHTTP1
        
    Set xmlHTTP1 = CreateObject("Microsoft.XMLHTTP")
        xmlHTTP1.Open 
    "get", Url, True
        xmlHTTP1.send
        
    While xmlHTTP1.ReadyState <> 4
            DoEvents
        
    Wend
        GetCode 
    = xmlHTTP1.ResponseBody
        
    If CStr(GetCode) <> "" Then GetCode = BytesToBstr(GetCode, CodeBase)
        
    Set ObjXML = Nothing
    End Function
       
    Public Function BytesToBstr(strBody, CodeBase)
        
    Dim ObjStream
        
    Set ObjStream = CreateObject("Adodb.Stream")
        
    With ObjStream
            .Type 
    = 1
            .Mode 
    = 3
            .Open
            .write strBody
            .Position 
    = 0
            .Type 
    = 2
            .Charset 
    = CodeBase
            BytesToBstr 
    = .ReadText
            .Close
        
    End With
        
    Set ObjStream = Nothing
    End Function
    responeText 为响应信息作为字符串返回
    responseXML 将响应信息格式化为XMLDOM对象并返回
    responseBody 将响应信息以unsigned byte数组的形式返回
    responseStream 将响应信息以IStream对象的形式返回
     Object.CopyTo(destStream,[CharNumber])

       说明:将对像的数据复制,destStream指向要复制的对像,CharNumber为可选参数,指要复制的字节数,不选为全部复制。

    AdoStream 使用说明:http://www.lihuasoft.net/article/show.php?id=5

  • 相关阅读:
    groovy集合
    groovy函数、字符串、循环
    groovy运行程序和类型推断
    常见IT英语短语一
    常见IT英语单词
    认识Groovy
    maven入门
    springboot之内嵌tomcat修改端口号
    springboot手动配置数据源:
    img与父元素的间隙解决
  • 原文地址:https://www.cnblogs.com/lgzh3/p/1364133.html
Copyright © 2011-2022 走看看