91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用C#怎么將圖片下載到服務器

發布時間:2020-12-23 15:45:52 來源:億速云 閱讀:203 作者:Leah 欄目:開發技術

利用C#怎么將圖片下載到服務器?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

C#實現把圖片下載到服務器代碼

ASPX頁面代碼:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="GetPictureByUrl.aspx.cs" Inherits="HoverTreeMobile.GetPictureByUrl" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <meta name="viewport" content="width=device-width, initial-scale=1" />
 <title>根據網址把圖片下載到服務器</title>
</head>
<body>
 <form id="form1" runat="server">
 <div>
 圖片網址:<br /><asp:TextBox runat="server" ID="textBoxImgUrl" Width="500" Text="/hvtimg/201508/cnvkv745.jpg" />
  <br /> <asp:Button runat="server" ID="btnImg" Text="下載" OnClick="btnImg_Click" />
  <br /><asp:Image runat="server" ID="hvtImg" />
  <br />
  <asp:Literal runat="server" ID="ltlTips" />
 </div>
 </form>
</body>
</html>

cs頁面代碼:

using System;

namespace HoverTreeMobile
{
 public partial class GetPictureByUrl : System.Web.UI.Page
 {
  protected void Page_Load(object sender, EventArgs e)
  {

  }

  protected void btnImg_Click(object sender, EventArgs e)
  {
   try
   {
    System.Net.WebClient m_hvtWebClient = new System.Net.WebClient();
    string m_keleyiPicture = Server.MapPath("/hovertreeimages/keleyi.jpg");

    //根據網址下載文件
    m_hvtWebClient.DownloadFile(textBoxImgUrl.Text, m_keleyiPicture);

    hvtImg.ImageUrl = "/hovertreeimages/keleyi.jpg";
    ltlTips.Text = string.Empty;
   }
   catch(Exception ex)
   {
    ltlTips.Text = ex.ToString();
   }

  }
 }
}

另外給大家分享一下下載圖片的核心方法的思路

using System.Net;
      WebClient myclient = new WebClient();
      myclient.DownloadFile("https://cache.yisu.com/upload/information/20201208/265/32723.gif",@"c:\baidu.gif"); 
DownloadFile方法里的address就是你要拼成的遠程服務器上的URL.

看完上述內容,你們掌握利用C#怎么將圖片下載到服務器的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临桂县| 郴州市| 绵竹市| 濉溪县| 洛隆县| 平利县| 潍坊市| 大田县| 高阳县| 平谷区| 剑川县| 高青县| 苏尼特右旗| 黄山市| 宁国市| 府谷县| 鞍山市| 松滋市| 绥芬河市| 广元市| 娄烦县| 张家界市| 萨嘎县| 阿尔山市| 威海市| 信宜市| 蓬安县| 平罗县| 定兴县| 榆树市| 神池县| 彰武县| 昌都县| 临湘市| 榕江县| 新干县| 正镶白旗| 扶风县| 赤峰市| 朝阳区| 于田县|