zoukankan      html  css  js  c++  java
  • 一个.net发送HTTP数据实体的类

    这里暂时没有写到对http数据头的定义

    当然头的定义可以这样写

    Dim head As WebHeaderCollection
            head.Add(
    "name""value")
            send.Headers 
    = head

    好了,归到正题,下面是类,接收到的是一个stream,这样方便利用哈!
    Imports System.Net
    Imports System.io

    Public Class http

        
    Public Function httpsend(ByVal uri As StringByVal method As StringByVal content As StringAs Stream
            
    Dim send As WebRequest = WebRequest.Create(uri)
            send.Method 
    = method
            
    Dim postdata As Byte()
            postdata 
    = System.Text.Encoding.Default.GetBytes(content)
            send.ContentLength 
    = postdata.Length
            
    Dim postStream As Stream = send.GetRequestStream()
            postStream.Write(postdata, 
    0, postdata.Length)
            postStream.Close()
            
    Dim re As WebResponse = send.GetResponse
            
    Return re.GetResponseStream
        
    End Function

       
    End Class



    对应的接收页面可以在LOAD事件里这样写

    If Not IsDBNull(Request) Then
                
    Dim a As Stream = Request.InputStream
    end if
  • 相关阅读:
    CentOS查找目录或文件
    vim使用
    解决Bat脚本中包含中文,运行乱码
    Window系统下搭建GIT本地服务器
    Django1.6 运行manage.py 报错解决办法(ImportError)
    centos7下使用yum安装pip
    hiho_1048_状态压缩2
    hiho_1044 状态压缩
    hiho_1041 国庆出游
    hdu_3555 bomb
  • 原文地址:https://www.cnblogs.com/aowind/p/296849.html
Copyright © 2011-2022 走看看