zoukankan      html  css  js  c++  java
  • 图片上传

    protected void Upload()
            {
                //判断是否选择文件
                if (FileUpload1.HasFile)
                {
                    string fileContentType = FileUpload1.PostedFile.ContentType;//获取文件类型
                    //判断类型是否符合条件
                    if (fileContentType == "image/bmp" || fileContentType == "image/gif" || fileContentType == "image/pjpeg"||fileContentType=="image/PNG")
                    {
                        //客户端文件路径
                        string name = FileUpload1.PostedFile.FileName;
                        FileInfo file = new FileInfo(name);
                        //文件名称
                        string fileName = file.Name;
                        //服务器端文件路径
                        string webFilePath = Server.MapPath("resource/" + fileName);
                        //判断同名文件是否存在
                        if (!File.Exists(webFilePath))
                        {
                            try
                            {
                                //使用SaveAs方法保存文件
                                FileUpload1.SaveAs(webFilePath);
                                this.lMsg.Text = "提示:文件" + fileName + "上传成功!";
                                this.lPathInfo.Text = "resource" + fileName;
                                this.iPic.ImageUrl = "resource" + fileName;
                            }
                            catch (Exception ex)
                            {
                                this.lMsg.Text = "提示:文件上传失败,失败原因:" + ex.Message;
                            }
                        }
                        else
                        {
                            this.lMsg.Text = "提示:文件已经存在,请重命名后上传";
                        }
                    }
                    else
                    {
                        this.lMsg.Text = "提示:文件类型不符合";
                    }
                }
            }
            protected void btUpload_Click(object sender, EventArgs e)
            {
                if (Directory.Exists("resource"))
                {
                    Upload();
                }
                else
                {
                   
                    Directory.CreateDirectory(Server.MapPath("resource"));
                    Upload();
                }
               
            }
  • 相关阅读:
    第一章 基础知识
    第1条:考虑用静态工厂方法代替构造器
    spring cloud(断路器——初学五)
    spring cloud(断路器——初学四)
    spring cloud(服务消费者(利用feign实现服务消费及负载均衡)——初学三)
    在阿里云的ubuntu服务器上安装xampp时出现unable to realloc unable to realloc 8380000 bytes错误
    laravel中ubuntu下执行php artisan migrate总是报错
    windows下安装php依赖关系管理工具composer
    apk下载的网址生成一个二维码
    android apk的签名和权限问题
  • 原文地址:https://www.cnblogs.com/java20130723/p/3211555.html
Copyright © 2011-2022 走看看