zoukankan      html  css  js  c++  java
  • 关于HTML生成PDF文件

       之前看过一些通过C#代码生成PDF文件的方式,用得最多的IText可以实现HTML页面生成PDF文件(也有一些人在机器上装了PDF打印机,使用打印来生成PDF),不过我个人觉得IText生成PDF的方法比较复杂,而在相当一段时间内查看资料后,发现有另外一个插件可以更好的控制HTML生成PDF文件。具体方法介绍如下:

    首先,下载一个ABCpdf .NET 7.0,下载地址:http://www.oyksoft.com/soft/8576.html,然后安装。此外安装的时候需要注册一下。

    其次,在安装目录下找到ABCpdf.dll文件,通过VS2008添加这个类库。

    最后,就是在项目中使用了,如下:

    一,在当前需要生成PDF文件的页面放一个按钮。按钮的 方法如下:
        protected void lbPdf_Click(object sender, EventArgs e)
        {

            string name = Request.QueryString["name"];
            Response.Redirect("Print.ashx?url=" + Request.Url.ToString() + "&name=" + name+"&group="+group);
        }

    二,新建一个print.ashx页,下面就是这个页面的代码:

    <%@ WebHandler Language="C#" Class="print" %>

    using System;
    using System.Web;
    using WebSupergoo.ABCpdf7;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Text.RegularExpressions;
    using System.IO;
    using System.Net;
    using System.Text;

    public class print : IHttpHandler {
       
        public void ProcessRequest (HttpContext context) {
            if (!string.IsNullOrEmpty(context.Request.QueryString["url"]) && !string.IsNullOrEmpty(context.Request.QueryString["name"]))
            {
                string url = context.Request.QueryString["url"];
                getPdf(url, context.Request.QueryString["name"],context.Request.QueryString["group"]);
            }
        }
        public bool IsReusable {
            get {
                return false;
            }
        }
        public void getPdf(string pdf, string name,string group)
        {
            Random r = new Random();
            Doc theDoc = new Doc();
            theDoc.TopDown = true;
            theDoc.Rect.String = "22 15 820 580";//控制显示的大小205 300 632 895
            theDoc.MediaBox.String = "0 0 842 595";//控制页面的大小
            string reg = @"\<a id\=(.)+\</a\>";//这段正则主要是去掉页面中自己不需要显示的东西
            string reg1 = @"body\{(.)+\}";
            string temp=Regex.Replace(Regex.Replace(getHtml(pdf),reg1,""),reg,"");
            temp = temp.Replace("{$name$}", name.Split(',')[0]).Replace("{$group$}", group);
            int theID = theDoc.AddImageHtml(temp, true, 0, false);
            while (true)
            {
                if (!theDoc.Chainable(theID))
                {
                    break;
                }
                theDoc.Page = theDoc.AddPage();
                theID = theDoc.AddImageToChain(theID);
            }
            byte[] theData = theDoc.GetData();
            FileCreate(name, theData);
            if (File.Exists(HttpContext.Current.Server.MapPath(name + ".pdf")))
            {
                HttpContext.Current.Response.Write(string.Format("<a target='_blank' href='{0}'>下载</a>", name + ".pdf"));
            }
        }
        //创建文件
        public static void FileCreate(string name, byte[] datas)
        {
            FileInfo CreateFile = new FileInfo(HttpContext.Current.Server.MapPath(name + ".pdf")); //创建文件
            if (CreateFile.Exists)
            {
                CreateFile.Delete();
            }
            FileStream FS = CreateFile.Create();
            FS.Write(datas, 0, datas.Length);
            FS.Close();
        }
        private string getHtml(string Url)
        {
            string strResult = "";
            try
            {
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url);
                request.Method = "GET";
                HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                Stream streamReceive = response.GetResponseStream();
                StreamReader streamReader = new StreamReader(streamReceive, Encoding.UTF8);
                strResult = streamReader.ReadToEnd();
            }
            catch
            {
            }
            return strResult;
        }
    }

    我在整个项目中生成PDF文件都是使用这个方法,我个人觉得这个方法很简单。我也经常在论坛里面看到不少的人都在询问HTML页面直接生成PDF文件的问题,所以今天就共享下我的做法

  • 相关阅读:
    SharePoint 2013 代码实现自定义的站点模版创建Site Collection
    today's learning of english 2
    拉普拉斯变换
    today's learning of english 1
    Kubernetes集群(RKE)安装ArgoCD排坑
    Jenkins Maven镜像Surefire插件运行失败
    Jenkins加载Spring扩展库出错排查
    Elasticsearch BM25相关度评分算法超详细解释
    简单方便的堡垒机自动登录脚本
    完美的Vim学习体验:VimReference
  • 原文地址:https://www.cnblogs.com/nlx0201/p/1908141.html
Copyright © 2011-2022 走看看