1. 程式人生 > >使用ASP.net(C#)批量上傳圖片並自動生成縮圖,文字水印圖,圖片水印圖

使用ASP.net(C#)批量上傳圖片並自動生成縮圖,文字水印圖,圖片水印圖

因本網站上傳圖片的需要,參考很多成熟的經驗,在ASP.net平臺上使用C#語言,做了這一自動批量上傳圖片的.ASPX檔案,並經除錯成功,在本網站上使用,現發出來供大家參考,也希望高手多加指點。 

        本程式主要功能有: 

        (1)可以根據自己的需要更改上傳到伺服器上的目錄,上傳的源圖、縮圖、文字水印圖和圖片水印圖分別存入所定目錄下的不同目錄; 

        (2)自動檢查目錄,如無所選擇的目錄,則自動建立它們; 

        (3)自行設定生成縮圖的大小; 

        (4)可以選擇是否需要生成文字水印、圖片水印,預設為不生成水印圖; 

        (5)可以新增、刪除所需上傳的圖片。 

        在本程式中均加了相關注釋,所以直接發程式碼,不再多作解釋。 

後臺程式: 

  1. using System;   
  2. using System.Collections;   
  3. using System.Configuration;   
  4. using System.Data;   
  5. using System.Linq;   
  6. using System.Web;   
  7. using System.Web.Security;   
  8. using System.Web.UI;   
  9. using System.Web.UI.HtmlControls;   
  10. using System.Web.UI.WebControls;   
  11. using System.Web.UI.WebControls.WebParts;   
  12. using System.Xml.Linq;   
  13. using System.IO;   
  14. using System.Net;   
  15. using System.Text.RegularExpressions;   
  16. /// <summary> 
  17. /// FileUpload1.HasFile  如果是true,則表示該控制元件有檔案要上傳 
  18. /// FileUpload1.FileName  返回要上傳檔案的名稱,不包含路徑資訊 
  19. /// FileUpload1.FileContent  返回一個指向上傳檔案的流物件 
  20. /// FileUpload1.PostedFile   返回已經上傳檔案的引用 
  21. /// FileUpload1.PostedFile.ContentLength  返回上傳檔案的按位元組表示的檔案大小 
  22. /// FileUpload1.PostedFile.ContentType    返回上傳檔案的MIME內容型別,也就是檔案型別,如返回"image/jpg" 
  23. /// FileUpload1.PostedFile.FileName       返回檔案在客戶端的完全路徑(包括檔名全稱) 
  24. /// FileUpload1.PostedFile.InputStream    返回一個指向上傳檔案的流物件 
  25. /// FileInfo物件表示磁碟或網路位置上的檔案。提供檔案的路徑,就可以建立一個FileInfo物件: 
  26. /// </summary> 
  27. public partial class BackManagement_ImagesUpload : System.Web.UI.Page   
  28. {   
  29.     publicstring treePath = "";   
  30.     publicint imageW = 100;   
  31.     publicint imageH = 100;   
  32.     protectedvoid Page_Load(object sender, EventArgs e)   
  33.     {   
  34.         this.Button5.Attributes.Add("Onclick""window.close();"); //在本地關閉當前頁,而不需要傳送到伺服器去關閉當前頁時 
  35.         if (!Page.IsPostBack)   
  36.         {   
  37.             Label2.Text = Server.MapPath("/");   
  38.             TextBox3.Text = "ImageUpload";   
  39.             treePath = Server.MapPath("/") + TextBox3.Text.Trim() + "/";   
  40.             TextBox4.Text = imageW.ToString();   
  41.             TextBox5.Text = imageH.ToString();   
  42.         }   
  43.     }   
  44.     protectedvoid btnload_Click(object sender, EventArgs e)   
  45.     {   
  46.         //如果儲存圖片的目錄不存在,由建立它 
  47.         treePath = Server.MapPath("/") + TextBox3.Text.Trim() + "/";   
  48.         imageW = Convert.ToInt32(TextBox4.Text.ToString());   
  49.         imageH = Convert.ToInt32(TextBox5.Text.ToString());   
  50.         if (!File.Exists(treePath + "images"))   //如果/ImageUpload/images不存在,則建立/ImageUpload/images,用於存放源圖片 
  51.         {   
  52.             System.IO.Directory.CreateDirectory(treePath + "images");   
  53.         }   
  54.         if (!File.Exists(treePath + "thumbnails"))   //如果/ImageUpload/thumbnails不存在,則建立/ImageUpload/thumbnails,用於存放縮圖片 
  55.         {   
  56.             System.IO.Directory.CreateDirectory(treePath + "thumbnails");   
  57.         }   
  58.         if (!File.Exists(treePath + "textImages"))   //如果/ImageUpload/textImages不存在,則建立/ImageUpload/textImages,用於存文字水印圖片 
  59.         {   
  60.             System.IO.Directory.CreateDirectory(treePath + "textImages");   
  61.         }   
  62.         if (!File.Exists(treePath + "waterImages"))   //如果/ImageUpload/waterImages不存在,則建立/ImageUpload/waterImages,用於存圖形水印圖片 
  63.         {   
  64.             System.IO.Directory.CreateDirectory(treePath + "waterImages");   
  65.         }   
  66.         if (FileUpload1.HasFile)   //如果是true,則表示該控制元件有檔案要上傳 
  67.         {   
  68.             string fileContentType = FileUpload1.PostedFile.ContentType;   
  69.             if (fileContentType == "image/bmp" || fileContentType == "image/gif" || fileContentType == "image/pjpeg")   
  70.             {   
  71.                 string name = FileUpload1.PostedFile.FileName;                         //返回檔案在客戶端的完全路徑(包括檔名全稱) 
  72.                 FileInfo file = new FileInfo(name);                                    //FileInfo物件表示磁碟或網路位置上的檔案。提供檔案的路徑,就可以建立一個FileInfo物件: 
  73.                 string fileName = file.Name;                                           // 檔名稱 
  74.                 string fileName_s = "x_" + file.Name;                                  // 縮圖檔名稱 
  75.                 string fileName_sy = "text_" + file.Name;                              // 水印圖檔名稱(文字) 
  76.                 string fileName_syp = "water_" + file.Name;                            // 水印圖檔名稱(圖片) 
  77.                 string webFilePath = treePath + "images/" + fileName;          // 伺服器端檔案路徑 
  78.                 string webFilePath_s = treePath + "thumbnails/" + fileName_s;    // 伺服器端縮圖路徑 
  79.                 string webFilePath_sy = treePath + "textImages/" + fileName_sy;   // 伺服器端帶水印圖路徑(文字) 
  80.                 string webFilePath_syp = treePath + "waterImages/" + fileName_syp; // 伺服器端帶水印圖路徑(圖片) 
  81.                 string webFilePath_sypf = Server.MapPath("../images/tzwhx.png");               // 伺服器端水印圖路徑(圖片) 
  82.                 if (!File.Exists(webFilePath))   
  83.                 {   
  84.                     try
  85.                     {   
  86.                         FileUpload1.SaveAs(webFilePath);                                // 使用 SaveAs 方法儲存檔案 
  87.                         if (CheckBox1.Checked)                                          //是否生成文字水印圖 
  88.                         {   
  89.                             AddWater(webFilePath, webFilePath_sy);   
  90.                         }   
  91.                         if (CheckBox2.Checked)                                          //是否生成圖形水印圖 
  92.                         {   
  93.                             AddWaterPic(webFilePath, webFilePath_syp, webFilePath_sypf);   
  94.                         }   
  95.                         MakeThumbnail(webFilePath, webFilePath_s, imageW, imageH, "Cut");     // 生成縮圖方法 
  96.                         Label1.Text = "提示:檔案“" + fileName + "”成功上傳,並生成“" + fileName_s + "”縮圖,檔案型別為:" + FileUpload1.PostedFile.ContentType + ",檔案大小為:" + FileUpload1.PostedFile.ContentLength + "B";   
  97.                         Image1.ImageUrl = "/" + TextBox3.Text.ToString() + "/images/" + fileName;   
  98.                         TextBox1.Text = webFilePath;   
  99.                         TextBox2.Text = "/" + TextBox3.Text.ToString() + "/images/" + fileName;   
  100.                     }   
  101.                     catch (Exception ex)   
  102.                     {   
  103.                         Label1.Text = "提示:檔案上傳失敗,失敗原因:" + ex.Message;   
  104.                     }   
  105.                 }   
  106.                 else
  107.                 {   
  108.                     Label1.Text = "提示:檔案已經存在,請重新命名後上傳";   
  109.                 }   
  110.             }   
  111.             else
  112.             {   
  113.                 Label1.Text = "提示:檔案型別不符";   
  114.             }   
  115.         }   
  116.     }   
  117.     /**/
  118.     /// <summary> 
  119.     /// 生成縮圖 
  120.     /// </summary> 
  121.     /// <param name="originalImagePath">源圖路徑(物理路徑)</param> 
  122.     /// <param name="thumbnailPath">縮圖路徑(物理路徑)</param> 
  123.     /// <param name="width">縮圖寬度</param> 
  124.     /// <param name="height">縮圖高度</param> 
  125.     /// <param name="mode">生成縮圖的方式</param>     
  126.     publicstaticvoid MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode)   
  127.     {   
  128.         System.Drawing.Image originalImage = System.Drawing.Image.FromFile(originalImagePath);   
  129.         int towidth = width;   
  130.         int toheight = height;   
  131.         int x = 0;   
  132.         int y = 0;   
  133.         int ow = originalImage.Width;   
  134.         int oh = originalImage.Height;   
  135.         switch (mode)   
  136.         {   
  137.             case"HW"://指定高寬縮放(可能變形)                 
  138.                 break;   
  139.             case"W"://指定寬,高按比例                     
  140.                 toheight = originalImage.Height * width / originalImage.Width;   
  141.                 break;   
  142.             case"H"://指定高,寬按比例 
  143.                 towidth = originalImage.Width * height / originalImage.Height;   
  144.                 break;   
  145.             case"Cut"://指定高寬裁減(不變形)                 
  146.                 if ((double)originalImage.Width / (double)originalImage.Height > (double)towidth / (double)toheight)  
  147. {   
  148.                     oh = originalImage.Height;   
  149.                     ow = originalImage.Height * towidth / toheight;   
  150.                     y = 0;   
  151.                     x = (originalImage.Width - ow) / 2;   
  152.                 } else
  153.                 {   
  154.                     ow = originalImage.Width;   
  155.                     oh = originalImage.Width * height / towidth;   
  156.                     x = 0;   
  157.                     y = (originalImage.Height - oh) / 2;   
  158.                 }   
  159.                 break;   
  160.             default:   
  161.                 break;   
  162.         }   
  163.         //新建一個bmp圖片 
  164.         System.Drawing.Image bitmap = new System.Drawing.Bitmap(towidth, toheight);   
  165.         //新建一個畫板 
  166.         System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bitmap);   
  167.         //設定高質量插值法 
  168.         g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;   
  169.         //設定高質量,低速度呈現平滑程度 
  170.         g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;   
  171.         //清空畫布並以透明背景色填充 
  172.         g.Clear(System.Drawing.Color.Transparent);   
  173.         //在指定位置並且按指定大小繪製原圖片的指定部分 
  174.         g.DrawImage(originalImage, new System.Drawing.Rectangle(0, 0, towidth, toheight),   
  175.             new System.Drawing.Rectangle(x, y, ow, oh),   
  176.             System.Drawing.GraphicsUnit.Pixel);   
  177.         try
  178.         {   
  179.             //以jpg格式儲存縮圖 
  180.             bitmap.Save(thumbnailPath, System.Drawing.Imaging.ImageFormat.Jpeg);   
  181.         }   
  182.         catch (System.Exception e)   
  183.         {   
  184.             throw e;   
  185.         }   
  186.         finally
  187.         {   
  188.             originalImage.Dispose();   
  189.             bitmap.Dispose();   
  190.             g.Dispose();   
  191.         }   
  192.     }   
  193.     /**/
  194.     /// <summary> 
  195.     /// 在圖片上增加文字水印 
  196.     /// </summary> 
  197.     /// <param name="Path">原伺服器圖片路徑</param> 
  198.     /// <param name="Path_sy">生成的帶文字水印的圖片路徑</param> 
  199.     protectedvoid AddWater(string Path, string Path_sy)   
  200.     {   
  201.         string addText = "www.tzwhx.com";   
  202.         System.Drawing.Image image = System.Drawing.Image.FromFile(Path);   
  203.         System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(image);   
  204.         g.DrawImage(image, 0, 0, image.Width, image.Height);   
  205.         System.Drawing.Font f = new System.Drawing.Font("Verdana", 10);    //字型位置為左空10 
  206.         System.Drawing.Brush b = new System.Drawing.SolidBrush(System.Drawing.Color.Green);   
  207.         g.DrawString(addText, f, b, 14, 14);    //字型大小為14X14 
  208.         g.Dispose();   
  209.         image.Save(Path_sy);   
  210.         image.Dispose();   
  211.     }   
  212.     /**/
  213.     /// <summary> 
  214.     /// 在圖片上生成圖片水印 
  215.     /// </summary> 
  216.     /// <param name="Path">原伺服器圖片路徑</param> 
  217.     /// <param name="Path_syp">生成的帶圖片水印的圖片路徑</param> 
  218.     /// <param name="Path_sypf">水印圖片路徑</param> 
  219.     protectedvoid AddWaterPic(string Path, string Path_syp, string Path_sypf)   
  220.     {   
  221.         System.Drawing.Image image = System.Drawing.Image.FromFile(Path);   
  222.         System.Drawing.Image copyImage = System.Drawing.Image.FromFile(Path_sypf);   
  223.         System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(image);   
  224.         g.DrawImage(copyImage, new System.Drawing.Rectangle(image.Width - copyImage.Width, image.Height - copyImage.Height, copyImage.Width, copyImage.Height), 0, 0, copyImage.Width, copyImage.Height, System.Drawing.GraphicsUnit.Pixel);   
  225.         g.Dispose();   
  226.         image.Save(Path_syp);   
  227.         image.Dispose();   
  228.     }   
  229.     protectedvoid Button2_Click(object sender, EventArgs e)   
  230.     {   
  231.         //自動儲存遠端圖片 
  232.          WebClient client = new WebClient();   
  233.         //備用Reg:<img.*?src=([/"/'])(http:////.+/.(jpg|gif|bmp|bnp))/1.*?> 
  234.         Regex reg = new Regex("IMG[^>]*?src//s*=//s*(?:/"(?<1>[^/"]*)/"|'(?<1>[^/']*)')", RegexOptions.IgnoreCase);   
  235.         MatchCollection m = reg.Matches(TextBox1.Text);   
  236.         foreach (Match math in m)   
  237.         {   
  238.             string imgUrl = math.Groups[1].Value;   
  239.             //在原圖片名稱前加YYMMDD重名名並上傳 
  240.               Regex regName = new Regex(@"/w+.(?:jpg|gif|bmp|png)", RegexOptions.IgnoreCase);   
  241.             string strNewImgName = DateTime.Now.ToShortDateString().Replace("-""") + regName.Match(imgUrl).ToString();   
  242.             try
  243.             {   
  244.               //儲存圖片 
  245.                 //client.DownloadFile(imgUrl, Server.MapPath("../ImageUpload/Auto/" + strNewImgName)); 
  246.             }   
  247.             catch
  248.             {   
  249.             }   
  250.             finally
  251.             {  
  252.             }  
  253.             client.Dispose();   
  254.         }   
  255.         Response.Write("<mce:script type="text/javascript"><!--  
  256. alert('遠端圖片儲存成功,儲存路徑為ImageUpload/auto')  
  257. // --></mce:script>"); 
  258.     }   
  259. }   
前臺程式碼:
  1. <%@ Page Language="C#"AutoEventWireup="true"CodeFile="ImagesAutoUpload.aspx.cs"Inherits="BackManagement_ImagesAutoUpload" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <htmlxmlns="http://www.w3.org/1999/xhtml">
  4. <headid="Head1"runat="server">
  5.     <title>自動上傳圖片並加文字水印</title>
  6. </head>
  7. <body>
  8.     <formid="form1"runat="server"method="post"enctype="multipart/form-data">
  9.     <labelfor="pagebody1"style="display: none"mce_style="display: none">
  10.     </label>
  11.     <fieldsetid="container">
  12.         <legend>上傳圖片並加文字水印</legend>
  13.         <divclass="window"style="list-style: none;"mce_style="list-style: none;">
  14.             <divstyle="padding: 0px; width: 808px; height: 200px; float: left; margin-right: 0px;">
  15.                 <ul>
  16.                     <listyle="width: 150px; margin: 0px; padding: 0px; float: left;">
  17.                         <asp:ImageID="Image1"runat="server" Heig, ht="200px"BorderWidth="2px"Width="150px"
  18.                             ImageUrl="~/images/Jpg/135X67/0_11_16.gif"/>
  19.                     </li>
  20.                     <listyle="width: 250px; margin: 0px;">
  21.                         <asp:ListBoxID="FileList"runat="server"Width="250px"Height="200px"></asp:ListBox>
  22.                     </li>
  23.                     <listyle="width: 400px; margin: 0px; float: right;">
  24.                         (1)圖片將儲存在你網站根目錄<asp:TextBoxID="TextBox3"runat="server"></asp:TextBox>中,你可以修改它,但建議你使用預設目錄。<br/>
  25.                         (2)上傳圖片儲存在所建目錄的子目錄 /images下;縮圖在 /thumbnails下;文字水印圖在 /textImages下;圖形水印圖在 /waterImages目錄下。<br/>
  26.                         (3)生成的縮圖的預設寬度和高度均為100px,你也可以修改它們,寬為: <asp:TextBoxID="TextBox4"runat="server"Width="54px"></asp:TextBox>高為:<asp:TextBox
  27.                             ID="TextBox5"runat="server"Width="56px"></asp:TextBox><br/>
  28.                         <asp:CheckBoxID="CheckBox1"runat="server"Text="文字水印"/>
  29.                         <asp:CheckBoxID="CheckBox2"runat="server"Text="圖形水印"/>
  30.                             你可以選擇是否生成水印圖,預設不生成。 </li>
  31.                 </ul>
  32.             </div>
  33.         </div>
  34.         <div>
  35.             <asp:FileUploadID="FindFile"runat="server"Width="529px"/>
  36.         </div>
  37.         <div>
  38.             <asp:TextBoxID="TipInfo"runat="server"Width="400px"></asp:TextBox>
  39.             <asp:TextBoxID="TextBox1"runat="server"Width="400px"></asp:TextBox>
  40.         </div>
  41.         <div>
  42.             <asp:ButtonID="Upload"runat="server"Text="上  傳"Style="height: 26px"mce_Style="height: 26px"OnClick="Upload_Click"/>
  43.             <asp:ButtonID="AddFile"runat="server"Text="添  加"OnClick="AddFile_Click1"/>
  44.             <asp:ButtonID="AddAllFile"runat="server"Text="全部新增"OnClick="AddAllFile_Click"
  45.                 Enabled="False"/>
  46.             <asp:ButtonID="DelFile"runat="server"Text="刪  除"OnClick="DelFile_Click1"/>
  47.             <asp:ButtonID="btnExit"runat="server"Text="完  成"/>
  48.         </div>
  49.         <div>
  50.         </div>
  51.     </fieldset>
  52.     </form>
  53. </body>
  54. </html>
另外,為解決大檔案上傳的限制,你必須在Web.config中加入以下程式碼。
  1. <system.web>
  2.     <httpRuntimeexecutionTimeout="90"maxRequestLength="20000"useFullyQualifiedRedirectUrl="false"requestLengthDiskThreshold="8192"/>
  3. </system.web>
文章出處:http://www.diybl.com/course/4_webprogram/asp.net/asp_netxl/2008106/148796_3.html

相關推薦

使用ASP.netC#批量圖片自動生成,文字水印,圖片水印

因本網站上傳圖片的需要,參考很多成熟的經驗,在ASP.net平臺上使用C#語言,做了這一自動批量上傳圖片的.ASPX檔案,並經除錯成功,在本網站上使用,現發出來供大家參考,也希望高手多加指點。 本程式主要功能有: (1)可以根據自己的需要更改上傳到伺服器上的目錄,上傳

一個基於ASP.NETC#的ACCESS數據庫操作類

region array conn 數據庫操作類 ide try esc [] int using System; using System.Collections; using System.Collections.Specialized; using Syst

asp.net+JQuery實現檔案批量!

做系統的時候難免會遇到需要批量上傳這樣的需求,之前一直沒有做過,今天經理給了這個需求並簡單講了一下思路,花了點時間把它給做出來了,細想起來還是比較簡單的。 思路:用JQuery來實現動態的新增或者刪除多個上傳控制元件(如<input type="file" name=

asp.net mvc 、 ajax 批量檔案

<!DOCTYPE html> <html> <head> <title>多檔案上傳</title> </head> <body> <div> &

ajaxfileuploadajaxfileupload 時會出現連接重置的問題

plugins err cor epo poi 前臺 element overflow 你在 1.ajaxfileupload 上傳時會出現如下問題: 2. 網上有很多的解決辦法,在這裏,我又發現了一種,可能你的錯誤會是這個原因引起的 ------原因是 : 你在一般

Spring Boot參考教程配置下載

.net blog 不想 center src 默認 tps servlet odi 7.配置上傳下載 使用上傳下載的功能我們需要配置multipartResolver,先啟動工程,不做配置。 訪問端點/beans: Spring Boot默認實例化了一個Multip

ASP.NET 基礎多文件

filename req 操作 tex 多文件上傳 遍歷 httppost con get ////多圖上傳 [HttpPost] public string duo() { ///.net 多文件

IT輪子系列——Excel與解析,一套代碼解決所有Excel業務,你Get到了嗎

tryparse mappath src 個推 列名 import ges bject tab 前言 在日常開發當中,excel的上傳與解析是很常見的。根據業務不同,解析的數據模型也都不一樣。不同的數據模型也就需要不同的校驗邏輯,這往往需要寫多套的代碼進行字段的檢驗,如必填

ASP.NET—— ASP.NET基礎

msil 虛擬 語言 mvc .net 映射 pre 後置 文件 ASP.NET優勢(有了MVC後變成劣勢): 瀏覽器無關:生成的代碼遵循w3c 的XHTML標準,不同瀏覽器顯示的內容相同 易於調試:vs2010增加了JS調試功能 運行效率高:代碼先編譯成中間語音(MS

一周死磕fastreport ----ASP.NET

如何 技術分享 inf 空間 組件 安裝 tps font 存在 https://blog.csdn.net/wuyuander/article/details/52692435 原文鏈接,點擊跳轉 首先是安裝好FastReport .net; 然後在vs2012

eclipse項目到碼雲

title ace eclips fontsize log 知識庫 push tle mys 把Eclipse項目上傳到碼雲的步驟: 1、登錄碼雲:新建項目 2、輸入項目名: 3、空項目創建成功如下圖: 4、右鍵點擊Eclipse的項目,選擇“Team

蘋果手機ios拍照圖片旋轉90度問題---java後臺處理

需要先匯入包 metadata-extractor-2.3.1.jar 地址 https://github.com/drewnoakes/metadata-extractor/releases?after=2.7.0 xmpcore-5.1.2.jar 依賴包 maven下載 med

FastSocketC/C++、FastSocket.NETC#與SuperSocket(純C#) 開源庫的區別、介紹、使用方法

一、FastSocket與SuperSocket  區別 裡面包含了視訊教程。 我們到底選擇哪一款開源的Socket框架?https://blog.csdn.net/abennet/article/details/79399713 二、新浪的FastSocket介紹

在.netC#中隨機生成較深的顏色

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!        

Spring MVC檔案

檔案上傳步驟   1.寫一個檔案上傳的頁面   2.寫一個檔案上傳的控制器 注意:   1.method="post"   2.enctype="multipart/form-data"   3.檔案型別上傳元件 type="file"   4.接收檔案引數需要使用MultipartFile 型別的引數

C# 操作Excel公式——批量刪除Excel公式保留文字

在Excel表格中,公式很常用,在處理資料時給我們提供了極大的方便。我們可以通過建立公式來批量處理資料,同理,我們也可以通過批量刪除公式來保護資料來源或方便於我們對資料的二次操作。下面的方法將介紹如何通過C#程式設計來批量刪除Excel公式並保留值。   所需工具:Spire.XLS for .

web安全6-- 檔案漏洞

1.1 漏洞描述     上傳漏洞這個顧名思義,就是攻擊者通過上傳木馬檔案,直接得到WEBSHELL,危害等級超級高,現在的入侵中上傳漏洞也是常見的漏洞。     導致該漏洞的原因在於程式碼作者沒有對訪客提交的資

SpringMVC檔案

SpringMVC(六)檔案上傳 Spring MVC對上傳檔案的支援 首先,DispatcherServlet會使用介面卡模式,將HttpServletRequest介面物件轉換為MultipartHttpServertRequest物件。MultipartHttpServet

JavaEE6——檔案下載

實驗6 檔案上傳下載 一、實驗目的 掌握通過Servlet實現檔案上傳下載功能; 重點掌握commons-fileupload.jar接收瀏覽器上傳檔案,實現上傳功能; 二、實驗注意事項 首先檔案上傳表單的資料也是被封裝到request物件中的。

.NETC#能開發出什麼樣的APP?盤點那些通過Smobiler開發的移動應用

.NET程式設計師一定最熟悉所見即所得式開發,熟悉的Visual Studio開發介面,熟悉的C#程式碼。 Smobiler也是因為具備這樣的特性,使開發人員,可以在VisualStudio上,像開發WinForm一樣拖拉控制元件,讓許多人在開發APP時,再次回到所見即所得的開發方式中去。 Smobile