asp.net判斷上傳檔案類型的三種方法

來源:互聯網
上載者:User
 一、 安全性比較低,把文字檔1.txt改成1.jpg照樣可以上傳,但其實現方法容易理解,實現也簡單,所以網上很多還是採取這種方法。

Boolean fileOk = false;          string path = Server.MapPath("~/images/");          //判斷是否已經選取檔案          if (FileUpload1.HasFile)          {              //取得檔案的副檔名,並轉換成小寫              string fileExtension = System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();              //限定只能上傳jpg和gif圖片              string[] allowExtension = { ".jpg", ".gif" };              //對上傳的檔案的類型進行一個個匹對              int j = 0;              for (int i = 0; i < allowExtension.Length; i++)              {                  if (fileExtension == allowExtension[i])                  {                      fileOk = true;                      return;                  }                  else                  {                      j++;                  }              }              if (j > 0)              {                  Response.Write("<script>alert('檔案格式不正確');</script>");                  return;              }          }          else          {              Response.Write("<script>alert('你還沒有選擇檔案');</script>");              return;          }          //如果副檔名符合條件,則上傳          if (fileOk)          {              FileUpload1.PostedFile.SaveAs(path + FileUpload1.FileName);              Response.Write("<script>alert('上傳成功');</script>");          }

二、不檢測檔案尾碼而是檢測檔案MIME內容類型。

Boolean fileOk = false;           string path = Server.MapPath("~/images/");           //判斷是否已經選取檔案           if (FileUpload1.HasFile)           {               //取得檔案MIME內容類型               string type = this.FileUpload1.PostedFile.ContentType.ToLower();               if (type.Contains("image"))    //圖片的MIME類型為"image/xxx",這裡只判斷是否圖片。               {                   fileOk = true;                }               else               {                   Response.Write("<script>alert('格式不正確')</script>");               }           }           else           {               Response.Write("<script>alert('你還沒有選擇檔案');</script>");           }           //如果副檔名符合條件,則上傳           if (fileOk)           {               FileUpload1.PostedFile.SaveAs(path + FileUpload1.FileName);               Response.Write("<script>alert('上傳成功');</script>");           }

三、可以實現真正意義上的檔案類型判斷

try            {                //判斷是否已經選取檔案                if (FileUpload1.HasFile)                {                    if (IsAllowedExtension(FileUpload1))                    {                        string path = Server.MapPath("~/images/");                        FileUpload1.PostedFile.SaveAs(path + FileUpload1.FileName);                        Response.Write("<script>alert('上傳成功');</script>");                    }                    else                    {                        Response.Write("<script>alert('您只能上傳jpg或者gif圖片');</script>");                    }                 }                else                {                    Response.Write("<script>alert('你還沒有選擇檔案');</script>");                }            }            catch (Exception error)            {                Response.Write(error.ToString());            }            #endregion        }//真正判斷檔案類型的關鍵函數        public static bool IsAllowedExtension(FileUpload hifile)        {            System.IO.FileStream fs = new System.IO.FileStream(hifile.PostedFile.FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);            System.IO.BinaryReader r = new System.IO.BinaryReader(fs);            string fileclass = "";            //這裡的位長要具體判斷.            byte buffer;            try            {                buffer = r.ReadByte();                fileclass = buffer.ToString();                buffer = r.ReadByte();                fileclass += buffer.ToString();             }            catch            {             }            r.Close();            fs.Close();            if (fileclass == "255216" || fileclass == "7173")//說明255216是jpg;7173是gif;6677是BMP,13780是PNG;7790是exe,8297是rar            {                return true;            }            else            {                return false;            }         }
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.