zoukankan      html  css  js  c++  java
  • 利用WebClient上传参数及文件流到远程ashx服务

    1 思路:

    WebClient.UploadFile()方法可以上传文件;UploadData()方法可以上传数据参数;如何合二为一既上传文件又上传参数呢?可将文件也当做参数,调用UploadData()方法

    2  客户端

    FileStream fs = new FileStream(“需上传文文件路径”, FileMode.Open, FileAccess.Read);

    byte[] byteFile = new byte[fs.Length];

    fs.Read(byteFile, 0, Convert.ToInt32(fs.Length));

    fs.Close();

    string postData = "param1=pwd&FileName=file1.xml&UploadFile=" + HttpUtility.UrlEncode(Convert.ToBase64String(byteFile));

    var webclient = new WebClient();

    webclient.Headers.Add("Content-Type", "application/x-www-form-urlencoded");

    byte[] byteArray = Encoding.UTF8.GetBytes(postData);

    byte[] buffer = webclient.UploadData(“远程ashx URL”, "POST", byteArray);

    var msg = Encoding.UTF8.GetString(buffer);

    3   服务端

    string param1= context.Request["param1"].ToString();
    FileStream fs = new FileStream(“需要保存文件的路径”, FileMode.Create, FileAccess.Write);
    fs.Write(Convert.FromBase64String(context.Request["UploadFile"].ToString()), 0, Convert.FromBase64String(context.Request["UploadFile"].ToString()).Length);
    fs.Flush();
    fs.Close();

  • 相关阅读:
    2017.12.13T19_B2_6.4内部类
    2017.12.13T19_B2_6.3内部类
    python--spider模拟登录
    Redis数据库
    python--spider验证码
    python--Selenium(动态渲染页面爬取)
    python--Ajax
    python绘图实例
    python绘图
    Numpy库收尾(20190806)
  • 原文地址:https://www.cnblogs.com/zxtceq/p/10715743.html
Copyright © 2011-2022 走看看