当前位置:
首页 > Python基础教程 >
-
C#导出pdf的实现方法(浏览器不预览直接下载)
前言
这篇文章主要给大家介绍了关于C#导出pdf的实现方法,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧
方法如下:
一.接口部分的代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[HttpGet] public HttpResponseMessage ExportPdf( string id) { string pdfName = "" ; //id 查询条件,根据实际情况修改即可 //pdfName 例如download.pdf byte [] pdfData= _policyGapManagerService.ExportPdf(id, out pdfName); //获得pdf字节 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数组
1.下载http模式的pdf文件(以ASP.NET为例,将PDF存在项目的目录下,可以通过http直接打开项目下的pdf文件)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#region 调用本地文件使用返回pdfbyte数组 /// <summary> /// 调用本地文件使用返回pdfbyte数组 /// </summary> /// <param name="srcPdfFile">‘D:\in2434341555551.pdf'</param> /// <returns></returns> 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 调用本地文件使用返回pdfbyte数组 #region 从网站上下载pdf,转化为字节流 /// <summary> /// 从网站上下载pdf,转化为字节流 /// </summary> /// <param name="srcPdfFile">文件地址:'https://******/group2/M00/00/04/wKj-mlpcoZ2IUbK5AACrpaV6k98AAAB6gAAAAAAAKu9562.pdf'</param> /// <returns></returns> 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(); //读取到内存 MemoryStream stmMemory = new MemoryStream(); byte [] buffer1 = new byte [length]; int i; //将字节逐个放入到Byte 中 while ((i = stream.Read(buffer1, 0, buffer1.Length)) > 0) { stmMemory.Write(buffer1, 0, i); } arraryByte = stmMemory.ToArray(); stmMemory.Close(); } return arraryByte; } #endregion 从网站上下载pdf,转化为字节流 #region 从网站上下载文件,保存到其他路径 /// <summary> /// 从网站上下载文件,保存到其他路径 /// </summary> /// <param name="pdfFile">文件地址</param> /// <param name="saveLoadFile">保存文件路径:D:\12221.pdf</param> /// <returns></returns> public string SaveRemoteFile( string saveLoadFile , string pdfFile) { //bool flag = false; var f = saveLoadFile + Guid.NewGuid().ToString( "D" ) + ".pdf" ; Uri downUri = new Uri(pdfFile); //建立一个WEB请求,返回HttpWebRequest对象 HttpWebRequest hwr = (HttpWebRequest)WebRequest.Create(downUri); //流对象使用完后自动关闭 using (Stream stream = hwr.GetResponse().GetResponseStream()) { //文件流,流信息读到文件流中,读完关闭 using (FileStream fs = File.Create(f)) { //建立字节组,并设置它的大小是多少字节 byte [] bytes = new byte [102400]; int n = 1; while (n > 0) { //一次从流中读多少字节,并把值赋给N,当读完后,N为0,并退出循环 n = stream.Read(bytes, 0, 10240); fs.Write(bytes, 0, n); //将指定字节的流信息写入文件流中 } } } //return flag; //return _outPath + saveLoadFile; return f; } #endregion 从网站上下载文件,保存到其他路径 |
2.ftp模式的pdf文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/// <summary> /// 下载FTP文件。 /// </summary> /// <param name="offsetPath">相对路径</param> /// <param name="fileName">文件名称</param> /// <returns>下载结果,本地文件路径</returns> 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; } } /// <summary> /// 判断文件是否存在 /// </summary> /// <param name="offsetPath"></param> /// <param name="fileName"></param> /// <returns></returns> 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 ; } } /// <summary> /// 获取目录下所有文件 /// </summary> /// <returns></returns> 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< string > fileList = new List< string >(); 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 ; } } |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式