C#生成PDF文档,读取TXT文件内容

using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;
//需要在项目里引用ICSharpCode.SharpZipLib.dll和itextsharp.dll
public string TxtFilePath;
public string SavePdfPath;//保存PDF的路径

#region 读取TXT内容
        private string ReadXieyi(string FilePath)
        {
            string xieyi = "";
            FileInfo fi = new FileInfo(FilePath);
            StreamReader sr = fi.OpenText();
            xieyi = sr.ReadToEnd();
            sr.Close();
            return xieyi;
        }
        #endregion
        #region 创建PDF文档方法
        private void zscsc()
        {
            Document document = new Document(PageSize.A4);

try
            {
                //<appSettings>
                // <add key="TxtFilePath" value="config/pubcode/"/>
                //<!-- 在WEBCOFIG里面加上的节点( value值是WebUI下的config/pubcode/)包文件保存在指定的文件下 -->
                //<appSettings>
                string name = Online.WebUI.AccountController.LoginName + "_" + _pic_id + ".pdf";
                SavePdfPath = AppDomain.CurrentDomain.BaseDirectory.ToString() + ConfigurationSettings.AppSettings["SavePdfPath"] + name;
               // object filename = "C://" + name; //filename,文件保存路径
           PdfWriter writer = PdfWriter.getInstance(document, new FileStream(SavePdfPath.ToString(), FileMode.Create));

document.addTitle("图片授权协议");
                document.addAuthor("Quanjing.COM");
                document.addHeader("Expires", "0");
                document.Open();

BaseFont bfSun = BaseFont.createFont(@"c:\windows\fonts\SIMKAI.TTF", BaseFont.IDENTITY_H, false); //调用的字体
                Font font = new Font(bfSun, 15);

String text = "                            图片授权协议\n\n";
                document.Add(new Paragraph(text, font));

//<appSettings>
                // <add key="TxtFilePath" value="config/pubcode/xieyi.txt"/>
                //<!-- 在WEBCOFIG里面加上的节点( value值是WebUI下的config/pubcode/xieyi.txt)这样的好处是:如果TXT的名称有改动,直接更改webconfig就行了 -->
                //<appSettings>
                TxtFilePath = AppDomain.CurrentDomain.BaseDirectory.ToString() + ConfigurationSettings.AppSettings["TxtFilePath"];

font = new Font(bfSun, 10);
                text = ReadXieyi(TxtFilePath); //(@"C:\xieyi.txt");读取TXT文件的路径" 图片授权TXT文件协议内容";
                document.Add(new Paragraph(text, font));

//插入图片
           string strCatalogId;
                DataTable dt = Online.Business.Production.bizDownPro.GetCatalogID(_pic_id);
                strCatalogId = dt.Rows[0][0].ToString();
                string FileNameUrl = "http://images.com/" + strCatalogId.ToLower() + "/thu/" + _pic_id.ToLower() + ".jpg";// "http://images.com/west004/thu/babf00254.jpg";//图片所在路径
                iTextSharp.text.Image jpeg = iTextSharp.text.Image.getInstance(new Uri(FileNameUrl));
                document.Add(new Paragraph("\n\n授权图片:", font));
                document.Add(jpeg);

//插入图片编号
                document.Add(new Paragraph("\n图片编号:"+ _pic_id, font));
                string ActivateCode;
                ActivateCode = _pic_id + Online.WebUI.AccountController.LoginName; //用图片编号加上登陆名生成MD5编码,只取前25位
                string Md5Code;
                Md5Code = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(ActivateCode, "MD5").ToLower().Substring(0, 20); //加密MD5,只取前20位//"QJ-QQQQW-EEEER-TTTTY-UUUUN";
                string code;
                code = Md5Code.Substring(0, 5);//每5位之间用"-"分开
                code = code + "-" + Md5Code.Substring(5, 5);
                code = code + "-" + Md5Code.Substring(10, 5);
                code = code + "-" + Md5Code.Substring(15, 5);
                code = "QJ-" + code.ToString().ToUpper();
                document.Add(new Paragraph("\n授权码:"+ code, font));//code是授权码
            }

catch (DocumentException de)
            {
                Response.Write(de.Message);
            }
            catch (IOException ioe)
            {
                Response.Write(ioe.Message);
            }
            document.Close();
        }
#endregion
//按钮事件
        protected void Button2_Click(object sender, EventArgs e)
        {
            string name = Online.WebUI.AccountController.LoginName + "_" + _pic_id + ".pdf";
            SavePdfPath = AppDomain.CurrentDomain.BaseDirectory.ToString() + ConfigurationSettings.AppSettings["SavePdfPath"] + name;
            if (!File.Exists(SavePdfPath.ToString()))
            {
                zscsc();//创建PDF文档
                ReadDownData();//下载TXT文件
            }
            else
            {
                ReadDownData();//下载PDF文件
            }
        }

//读取TXT文件并下载 PDF文件
        public void ReadDownData()
        {
            string name = Online.WebUI.AccountController.LoginName + "_" + _pic_id + ".pdf";
            SavePdfPath = AppDomain.CurrentDomain.BaseDirectory.ToString() + ConfigurationSettings.AppSettings["SavePdfPath"] + name;
            //读取文件,并写入到客户端响应
            FileStream fs = new FileStream(SavePdfPath.ToString(), FileMode.Open, FileAccess.Read);

byte[] b = new Byte[fs.Length];
            fs.Read(b, 0, b.Length);
            fs.Flush();
            fs.Close();
            //File.Delete(filename.ToString()); 下载之后不执行删除
        Response.Clear();
            Response.ClearHeaders();
            Response.Buffer = false;
            Response.ContentType = "application/octet-stream";//ContentType;
            Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(name, System.Text.Encoding.UTF8));
            Response.AppendHeader("Content-Length", b.Length.ToString());
            Response.OutputStream.Write(b, 0, b.Length);
            Response.Flush();
            Response.End();
        }

转载 http://www.idai.com.cn/blog/article.asp?id=489

C#生成PDF文档,读取TXT文件内容

时间: 2024-11-03 21:58:42

C#生成PDF文档,读取TXT文件内容的相关文章

使用PHP生成PDF文档

原文:使用PHP生成PDF文档 实际工作中,我们要使用PHP动态的创建PDF文档,目前有许多开源的PHP创建PDF的类库,今天我给大家来介绍一款优秀的PDF库,它就是TCPDF,TCPDF是一个用于快速生成PDF文件的PHP5函数包.TCPDF基于FPDF进行扩展和改进,增强了实用功能. 使用PHP生成PDF文档 实际工作中,我们要使用PHP动态的创建PDF文档,目前有许多开源的PHP创建PDF的类库,今天我给大家来介绍一款优秀的PDF库,它就是TCPDF,TCPDF是一个用于快速生成PDF文件

Apache PDFbox开发指南之PDF文档读取

转载请注明来源:http://blog.csdn.net/loongshawn/article/details/51542309 相关文章: <Apache PDFbox开发指南之PDF文本内容挖掘> < Apache PDFbox开发指南之PDF文档读取> 1.介绍 Apache PDFbox是一个开源的.基于Java的.支持PDF文档生成的工具库,它可以用于创建新的PDF文档,修改现有的PDF文档,还可以从PDF文档中提取所需的内容.Apache PDFBox还包含了数个命令行

利用Java动态生成 PDF 文档

利用Java动态生成 PDF 文档,则需要开源的API.首先我们先想象需求,在企业应用中,客户会提出一些复杂的需求,比如会针对具体的业务,构建比较典型的具备文档性质的内容,一般会导出PDF进行存档.那么目前最佳的解决方案,你可能会想到 iText ,对没错... iText+(Velocity / Freemarker)可以实现.不过据我熟悉,iText本身提供的HTML解析器还是不够强大,许多HTML标签和属性无法识别,更悲催的是简单的CSS它不认识,排版调整样式会让你头大的.不要失望,接下来

利用PDFLib生成PDF文档

本文代码生成的PDF文档效果图 一.PDF介绍 PDF是Portable Document Format的缩写,PDF文件格式是国际通用的电子文档交换事实标准,被许多国家采用作为电子文档交换.PDF文件可以在各种平台下阅读.编辑.发布.该文件格式支持字体.图像.甚至任何附件的嵌入.您可以通过免费的Adobe Acrobat Reader来阅读.编辑PDF文档. 二.PDFLib介绍 PDFLib是用于创建PDF文档的开发库,提供了简单易用的API,隐藏了创建PDF的复杂细节且不需要第3方软件的支

使用PDFLib生成PDF文档教程

一.PDF介绍PDF是Portable Document Format的缩写,PDF文件格式是国际通用的电子文档交换事实标准,被许多国家采用作为电子文档交换.PDF文件可以在各种平台下阅读.编辑.发布.该文件格式支持字体.图像.甚至任何附件的嵌入.您可以通过免费的Adobe Acrobat Reader来阅读.编辑PDF文档. 二.PDFLib介绍PDFLib是用于创建PDF文档的开发库,提供了简单易用的API,隐藏了创建PDF的复杂细节且不需要第3方软件的支持.PDFLib库对于个人是免费的,

自动把动态的jsp页面(或静态html)生成PDF文档,并且上传至服务器

置顶2017年11月06日 14:41:04 阅读数:2311 这几天,任务中有一个难点是把一个打印页面自动给生成PDF文档,并且上传至服务器,然而公司框架只有手动上传文档,打印时可以保存为PDF在本地吧,所以感到很头疼,刚开始没有方向,所以只有surf the Internet了,网上看了很多资料,渐渐的从一点方向也不懂,到慢慢开始了解怎么着手去做,废话就不说了, 我看网上大概介绍了三种方式:Jasper Report . iText . flying sauser jasper report

Java iText使用PDF模板生成PDF文档

我们系统需要生成一个可以打印的PDF文档,老板给了我一个Word文档,按照这个Word文档的格式生成PDF文档. 第一步:下载AdobeAcrobat DC,必须使用这个来制作from域. 第二步:使用AdobeAcrobat DC将Word导成PDF文档. 第三步:由于还要加水印的效果,所以还是使用AdobeAcrobat DC来添加水印,非常方便: 添加水印的方法:使用AdobeAcrobat DC打开PDF文档,"工具"->"编辑PDF"->&qu

Java生成PDF文档(表格、列表、添加图片等)

需要的两个包及下载地址: (1)iText.jar:http://download.csdn.net/source/296416 (2)iTextAsian.jar(用来进行中文的转换):http://download.csdn.net/source/172399 代码如下: 1 import java.awt.Color; 2 import java.io.FileOutputStream; 3 import com.lowagie.text.Cell; 4 import com.lowagi

Python Reportlab 生成PDF文档

1. 生成一个PDF文档 Code 1 from reportlab.platypus import Paragraph, SimpleDocTemplate 2 from reportlab.lib.styles import getSampleStyleSheet 3 from reportlab.lib.pagesizes import A4,inch 4 5 file_name = "PDF_test.pdf" 6 # pagesize为文档页面尺寸 7 # topMargin