• winform上传文件解决方案


    相信用ASP.NET写一个上传文件的网页,大家都会写,但是有没有人想过通过在WinForm中通过HTTP协议上传文件呢?
    有些人说要向服务器端上传文件,用FTP协议不是很简单吗?效率又高,为什么还要使用HTTP协议那么麻烦呢?这里面有几个原因:
    (1)FTP服务器的部署相对麻烦,还要设置权限,权限设置不对,还会惹来一系列的安全问题。
    (2)如果双方都还有防火墙,又不想开发FTP相关的一些端口时,HTTP就会大派用场,就像WEB Services能穿透防火墙一样。
    (3)其他的...,还在想呢...
    但是使用HTTP也有他的一些问题,例如不能断点续传,大文件上传很难,速度很慢,所以HTTP协议上传的文件大小不应该太大。
    说了这么多,原归正传,一般来说,在Winform里通过HTTP上传文件有几种可选的方法:
    (1)前面提到的Web Services,就是一种很好的方法,通过编写一个WebMethod,包含有 byte[] 类型的参数,然后调用Web Services的方法,文件内容就会以Base64编码传到服务器上,然后重新保存即可。

    [WebMethod]
    public void UploadFile(byte[] content,string filename){
               Stream sw = new StreamWriter(...);
               sw.Close();
    }

    当然,这种通过Base64编码的方法效率比较低,那么可以采用WSE,支持附件,并以2进制形式传送,效率会更高。
    (2)除了通过WebService,另外一种更简单的方法就是通过WebClient或者HttpWebRequest来模拟HTTP的POST动作来实现。这时候首先需要编写一个asp.net web form来响应上传,代码如下:

    <%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="UploadFileWeb.WebForm1" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    <html>
     <head>
      <title>WebForm1</title>
      <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
      <meta name="CODE_LANGUAGE" Content="C#">
      <meta name="vs_defaultClientScript" content="JavaScript">
      <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
     </head>
     <body>
      <form id="Form1" method="post" runat="server">
      </form>
     </body>
    </html>
    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;
    namespace UploadFileWeb
    {
     /// <summary>
     /// WebForm1 的摘要说明。
     /// </summary>
     public class WebForm1 : System.Web.UI.Page
     {
      private void Page_Load(object sender, System.EventArgs e)
      {
       // 在此处放置用户代码以初始化页面
       foreach( string f in Request.Files.AllKeys)
       {
        HttpPostedFile file = Request.Files[f];
        file.SaveAs(@"D:\Temp\" + file.FileName);
       }
       if( Request.Params["testKey"] != null )
       {
        Response.Write(Request.Params["testKey"]);
       }
      }
      #region Web 窗体设计器生成的代码
      override protected void OnInit(EventArgs e)
      {
       //
       // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
       //
       InitializeComponent();
       base.OnInit(e);
      }
      
      /// <summary>
      /// 设计器支持所需的方法 - 不要使用代码编辑器修改
      /// 此方法的内容。
      /// </summary>
      private void InitializeComponent()
      {    
       this.Load += new System.EventHandler(this.Page_Load);
      }
      #endregion
     }
    }

    其实这个页面跟我们平常写的asp.net上传文件代码是一样的,在Web 页的Request对象中包含有Files这个对象,里面就包含了通过POST方式上传的所有文件的信息,这时所需要做的就是调用 Request.Files[i].SaveAs方法。
    但是怎么让才能在WinForm里面模拟想Web Form POST 数据呢?System.Net命名空间里面提供了两个非常有用的类,一个是WebClient,另外一个是HttpWebRequest类。如果我们不需要通过代理服务器来上传文件,那么非常简单,只需要简单的调用WebClient.UploadFile方法就能实现上传文件:

    private void button1_Click(object sender, System.EventArgs e)
      {
       WebClient myWebClient = new WebClient();
       
       myWebClient.UploadFile("http://localhost/UploadFileWeb/WebForm1.aspx","POST",@"D:\xx.exe");
           }
    是不是觉得很简单呢?确实就这么简单。

    方法二:

    工作中用到winform上传文件(-_-!,很少用winform,搞了半天)
    碰到一点问题,解决如下
    1、501 为实现错误
    解决方法:
    先把IISWEB服务扩展中的WebDev打开
    然后
    IIS站点添加MIME  txt类型 常见的MIME类型如下
    超文本标记语言文本 .html,.html text/html 
    普通文本 .txt text/plain 
    RTF文本 .rtf application/rtf 
    GIF图形 .gif image/gif 
    JPEG图形 .ipeg,.jpg image/jpeg 
    au声音文件 .au audio/basic 
    MIDI音乐文件 mid,.midi audio/midi,audio/x-midi 
    RealAudio音乐文件 .ra, .ram audio/x-pn-realaudio 
    MPEG文件 .mpg,.mpeg video/mpeg 
    AVI文件 .avi video/x-msvideo 
    GZIP文件 .gz application/x-gzip 
    TAR文件 .tar application/x-tar 
    再然后
    设置目标文件夹的可写性

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Net;
    using System.IO;
    
    namespace Common
    {
        /// <summary>
        /// winform形式的文件传输类
        /// </summary>
        public class WinFileTransporter
        {
            /// <summary>
            /// WebClient上传文件至服务器,默认不自动改名
            /// </summary>
            /// <param name="fileNamePath">文件名,全路径格式</param>
            /// <param name="uriString">服务器文件夹路径</param>
            public void UpLoadFile(string fileNamePath, string uriString)
            {
                UpLoadFile(fileNamePath, uriString, false);
            }
            /// <summary>
            /// WebClient上传文件至服务器
            /// </summary>
            /// <param name="fileNamePath">文件名,全路径格式</param>
            /// <param name="uriString">服务器文件夹路径</param>
            /// <param name="IsAutoRename">是否自动按照时间重命名</param>
            public void UpLoadFile(string fileNamePath, string uriString, bool IsAutoRename)
            {
                string fileName = fileNamePath.Substring(fileNamePath.LastIndexOf("\\") + 1);
                string NewFileName = fileName;
                if (IsAutoRename)
                {
                    NewFileName = DateTime.Now.ToString("yyMMddhhmmss") + DateTime.Now.Millisecond.ToString() + fileNamePath.Substring(fileNamePath.LastIndexOf("."));
                }
    
                string fileNameExt = fileName.Substring(fileName.LastIndexOf(".") + 1);
                if (uriString.EndsWith("/") == false) uriString = uriString + "/";
    
                uriString = uriString + NewFileName;
                Utility.LogWriter log = new Utility.LogWriter();
                //log.AddLog(uriString, "Log");
                //log.AddLog(fileNamePath, "Log");
                /**/
                /// 创建WebClient实例
                WebClient myWebClient = new WebClient();
                myWebClient.Credentials = CredentialCache.DefaultCredentials;
                // 要上传的文件
                FileStream fs = new FileStream(fileNamePath, FileMode.Open, FileAccess.Read);
                //FileStream fs = OpenFile();
                BinaryReader r = new BinaryReader(fs);
                byte[] postArray = r.ReadBytes((int)fs.Length);
                Stream postStream = myWebClient.OpenWrite(uriString, "PUT");
    
    
                try
                {
    
                    //使用UploadFile方法可以用下面的格式
                    //myWebClient.UploadFile(uriString,"PUT",fileNamePath);
    
    
                    if (postStream.CanWrite)
                    {
                        postStream.Write(postArray, 0, postArray.Length);
                        postStream.Close();
                        fs.Dispose();
                        log.AddLog("上传日志文件成功!", "Log");
                    }
                    else
                    {
                        postStream.Close();
                        fs.Dispose();
                        log.AddLog("上传日志文件失败,文件不可写!", "Log");
                    }
    
                }
                catch (Exception err)
                {
                    postStream.Close();
                    fs.Dispose();
                    //Utility.LogWriter log = new Utility.LogWriter();
                    log.AddLog(err, "上传日志文件异常!", "Log");
                    throw err;
                }
                finally
                {
                    postStream.Close();
                    fs.Dispose();
                }
            }
    
    
            /**/
            /// <summary>
            /// 下载服务器文件至客户端
    
            /// </summary>
            /// <param name="URL">被下载的文件地址,绝对路径</param>
            /// <param name="Dir">另存放的目录</param>
            public void Download(string URL, string Dir)
            {
                WebClient client = new WebClient();
                string fileName = URL.Substring(URL.LastIndexOf("\\") + 1);  //被下载的文件名
    
                string Path = Dir + fileName;   //另存为的绝对路径+文件名
                Utility.LogWriter log = new Utility.LogWriter();
                try
                {
                    WebRequest myre = WebRequest.Create(URL);
                }
                catch (Exception err)
                {
                    //MessageBox.Show(exp.Message,"Error"); 
                    log.AddLog(err, "下载日志文件异常!", "Log");
                }
    
                try
                {
                    client.DownloadFile(URL, fileName);
                    FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
                    BinaryReader r = new BinaryReader(fs);
                    byte[] mbyte = r.ReadBytes((int)fs.Length);
    
                    FileStream fstr = new FileStream(Path, FileMode.OpenOrCreate, FileAccess.Write);
    
                    fstr.Write(mbyte, 0, (int)fs.Length);
                    fstr.Close();
    
                }
                catch (Exception err)
                {
                    //MessageBox.Show(exp.Message,"Error");
                    log.AddLog(err, "下载日志文件异常!", "Log");
                }
            }
    
        }
    }

     

    如果这篇文章对您有帮助,您可以打赏我

    技术交流QQ群:15129679

  • 相关阅读:
    使用SuperWebSocket 构建实时 Web 应用
    slam for Windows 库安装及应用libfreenect2
    《SLAM十四讲》g2o_custombundle在windows轻松调通
    windows下命令行查看库依赖
    zend studio控制台中文乱码
    http协议转
    mysql 字段 增删改
    PHP内部函数
    分层设计
    SecureCRT上传和下载
  • 原文地址:https://www.cnblogs.com/yeminglong/p/2726344.html
Copyright © 2020-2023  润新知