1. <ul id="0c1fb"></ul>

      <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
      <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区

      RELATEED CONSULTING
      相關(guān)咨詢(xún)
      選擇下列產(chǎn)品馬上在線(xiàn)溝通
      服務(wù)時(shí)間:8:30-17:00
      你可能遇到了下面的問(wèn)題
      關(guān)閉右側(cè)工具欄

      新聞中心

      這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷(xiāo)解決方案
      C#中怎么導(dǎo)出pdf

      C#中怎么導(dǎo)出pdf,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

      專(zhuān)注于為中小企業(yè)提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)錫山免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了1000多家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

      一.接口部分的代碼

      [HttpGet]    public HttpResponseMessage ExportPdf(string id)    {      string pdfName = "";       //id 查詢(xún)條件,根據(jù)實(shí)際情況修改即可       //pdfName 例如download.pdf      byte[] pdfData= _policyGapManagerService.ExportPdf(id, out pdfName);//獲得pdf字節(jié)      var result = new HttpResponseMessage(HttpStatusCode.OK)      {        Content = new ByteArrayContent(pdfData)      };      result.Content.Headers.ContentDisposition =        new ContentDispositionHeaderValue("attachment")        {          FileName = pdfName        };      result.Content.Headers.ContentType =new MediaTypeHeaderValue("application/pdf");      return result;    }

      二.返回pdfbyte數(shù)組

      1.下載http模式的pdf文件(以ASP.NET為例,將PDF存在項(xiàng)目的目錄下,可以通過(guò)http直接打開(kāi)項(xiàng)目下的pdf文件)

      #region 調(diào)用本地文件使用返回pdfbyte數(shù)組    ///

         /// 調(diào)用本地文件使用返回pdfbyte數(shù)組    ///    /// ‘D:\in2434341555551.pdf'    ///    public static byte[] GetSignaturePDFByte(string srcPdfFile)    {      using (FileStream fsRead = new FileStream(srcPdfFile, FileMode.Open, FileAccess.Read, FileShare.Read))      {        int fsLen = (int)fsRead.Length;        byte[] hebyte = new byte[fsLen];        fsRead.Read(hebyte, 0, hebyte.Length);        return hebyte;      }    }    #endregion 調(diào)用本地文件使用返回pdfbyte數(shù)組    #region 從網(wǎng)站上下載pdf,轉(zhuǎn)化為字節(jié)流    ///    /// 從網(wǎng)站上下載pdf,轉(zhuǎn)化為字節(jié)流    ///    /// 文件地址:'https://******/group2/M00/00/04/wKj-mlpcoZ2IUbK5AACrpaV6k98AAAB6gAAAAAAAKu9562.pdf'    ///    public static Byte[] GetByteByRemoteURL(string srcPdfFile)    {      byte[] arraryByte;      HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(srcPdfFile);      req.Method = "GET";      using (WebResponse wr = req.GetResponse())      {        StreamReader responseStream = new StreamReader(wr.GetResponseStream(), Encoding.UTF8);        int length = (int)wr.ContentLength;        byte[] bs = new byte[length];        HttpWebResponse response = wr as HttpWebResponse;        Stream stream = response.GetResponseStream();        //讀取到內(nèi)存        MemoryStream stmMemory = new MemoryStream();        byte[] buffer1 = new byte[length];        int i;        //將字節(jié)逐個(gè)放入到Byte 中        while ((i = stream.Read(buffer1, 0, buffer1.Length)) > 0)        {          stmMemory.Write(buffer1, 0, i);        }        arraryByte = stmMemory.ToArray();        stmMemory.Close();      }      return arraryByte;    }    #endregion 從網(wǎng)站上下載pdf,轉(zhuǎn)化為字節(jié)流    #region 從網(wǎng)站上下載文件,保存到其他路徑    ///    /// 從網(wǎng)站上下載文件,保存到其他路徑    ///    /// 文件地址    /// 保存文件路徑:D:\12221.pdf    ///    public string SaveRemoteFile( string saveLoadFile , string pdfFile)    {      //bool flag = false;      var f = saveLoadFile + Guid.NewGuid().ToString("D") + ".pdf";      Uri downUri = new Uri(pdfFile);      //建立一個(gè)WEB請(qǐng)求,返回HttpWebRequest對(duì)象      HttpWebRequest hwr = (HttpWebRequest)WebRequest.Create(downUri);      //流對(duì)象使用完后自動(dòng)關(guān)閉      using (Stream stream = hwr.GetResponse().GetResponseStream())      {        //文件流,流信息讀到文件流中,讀完關(guān)閉        using (FileStream fs = File.Create(f))        {          //建立字節(jié)組,并設(shè)置它的大小是多少字節(jié)          byte[] bytes = new byte[102400];          int n = 1;          while (n > 0)          {            //一次從流中讀多少字節(jié),并把值賦給N,當(dāng)讀完后,N為0,并退出循環(huán)            n = stream.Read(bytes, 0, 10240);            fs.Write(bytes, 0, n); //將指定字節(jié)的流信息寫(xiě)入文件流中          }        }      }      //return flag;      //return _outPath + saveLoadFile;      return f;    }    #endregion 從網(wǎng)站上下載文件,保存到其他路徑

      2.ftp模式的pdf文件

      ///

         /// 下載FTP文件。    ///    /// 相對(duì)路徑    /// 文件名稱(chēng)    /// 下載結(jié)果,本地文件路徑    public string DownLoad(string offsetPath,string fileName)    {      try      {        FtpWebRequest ftpWeb = (FtpWebRequest)WebRequest.Create(_ftpRootPath + offsetPath + fileName);        ftpWeb.Method = WebRequestMethods.Ftp.DownloadFile;        ftpWeb.UseBinary = true;        var resp = ftpWeb.GetResponse();        using (FileStream fs = new FileStream(_outPath + fileName, FileMode.Create))        {          using (var s = resp.GetResponseStream())          {            if (s == null) { return "文件不存在!"; }            int readCout = 0;            byte[] bytes = new byte[1024];            readCout = s.Read(bytes, 0, 1024);            while (readCout > 0)            {              fs.Write(bytes, 0, readCout);              readCout = s.Read(bytes, 0, 1024);            }          }        }        resp.Close();        return _outPath + fileName;      }      catch (Exception e)      {        return e.Message;      }          }    ///    /// 判斷文件是否存在    ///    ///    ///    ///    public bool FileExists(string offsetPath, string fileName)    {      try      {        FtpWebRequest ftpWeb = (FtpWebRequest)WebRequest.Create(_ftpRootPath + offsetPath + fileName);        ftpWeb.Method = WebRequestMethods.Ftp.DownloadFile;        ftpWeb.UseBinary = true;        var resp = (FtpWebResponse)ftpWeb.GetResponse();        resp.Close();        return true;      }      catch (Exception)      {        return false;      }    }    ///    /// 獲取目錄下所有文件    ///    ///    public string[] Files(string offsetPath)    {      try      {        FtpWebRequest ftpWeb = (FtpWebRequest)WebRequest.Create(_ftpRootPath + offsetPath);        ftpWeb.Method = WebRequestMethods.Ftp.ListDirectory;        Stream stream = ftpWeb.GetResponse().GetResponseStream();        if (stream == null)        {          return null;        }        List fileList = new List();        using (StreamReader sr = new StreamReader(stream))        {          StringBuilder sb = new StringBuilder();          do          {            sb.Append(sr.ReadLine());            if (sb.Length > 0)            {              fileList.Add(sb.ToString());              sb.Clear();            }            else            {              break;            }          } while (true);        }        return fileList.ToArray();      }      catch (Exception)      {         return null;      }    }

      看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。


      當(dāng)前題目:C#中怎么導(dǎo)出pdf
      分享URL:http://www.ef60e0e.cn/article/geicco.html
      99热在线精品一区二区三区_国产伦精品一区二区三区女破破_亚洲一区二区三区无码_精品国产欧美日韩另类一区
      1. <ul id="0c1fb"></ul>

        <noscript id="0c1fb"><video id="0c1fb"></video></noscript>
        <noscript id="0c1fb"><listing id="0c1fb"><thead id="0c1fb"></thead></listing></noscript>

        石楼县| 霍林郭勒市| 五台县| 双辽市| 大英县| 江都市| 陆河县| 凌源市| 乌兰浩特市| 依安县| 闻喜县| 新建县| 陇川县| 漠河县| 禹城市| 宜宾县| 雅安市| 西吉县| 静乐县| 上犹县| 高唐县| 永嘉县| 嵊泗县| 石柱| 南陵县| 寻甸| 海原县| 老河口市| 平阳县| 内江市| 邵阳市| 岳普湖县| 禹州市| 日照市| 镇康县| 沾化县| 三明市| 常德市| 江川县| 临安市| 兴业县|