用ASP.net判斷上傳檔案型別的三種方法

Web開發者發表於2013-04-16

  一、 安全性比較低,把文字檔案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;
            }

        }

相關文章