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();
                }
               
            }

  • 相关阅读:
    hbase 2.0.2 分布式安装配置/jar包替换
    hive character '' not supported here
    request.getSession().getServletContext().getRealPath()的一些坑
    hive 自定义函数
    hive 导出数据的几种方式
    hive 分区表与数据产生关联的三种方式
    hive 日志配置/表头配置
    hive 3.1.0 安装配置
    zookeeper 客户端操作
    linux 循环读取文件的每一行
  • 原文地址:https://www.cnblogs.com/grax/p/3613862.html
Copyright © 2011-2022 走看看