invoiceservlet.java

来自「这个是pdf开发包 里面包含有pdflib库 还有针对于c c++ java p」· Java 代码 · 共 213 行

JAVA
213
字号
/* $Id: invoiceServlet.java,v 1.9.2.3 2004/10/26 13:39:08 rp Exp $
 *
 * PDFlib client: invoice servlet example in Java
 */

import java.io.*;
import java.text.*;             // DateFormat
import java.util.*;             // Date
import javax.servlet.*;

import com.pdflib.pdflib;
import com.pdflib.PDFlibException;

public class invoiceServlet extends GenericServlet
{
    public void service(ServletRequest request, ServletResponse response)
    {

	pdflib p = null ;
	int         i, stationery, page, regularfont, boldfont;
	String      infile = "stationery.pdf";
	/* This is where font/image/PDF input files live. Adjust as necessary.*/
	String      searchpath = "../data";
	final float left = 55;
	final float right = 530;
	float       fontsize = 12, leading, y;
	float       sum, total;
	float       pagewidth = 595, pageheight = 842;

        String      buf, optlist;
        String      baseopt =
            "ruler        {   30 45     275   375   475} " +
            "tabalignment {right left right right right} " +
            "hortabmethod ruler fontsize 12 ";
 
        int textflow;
 

	Date now = new Date();
	DateFormat fulldate = DateFormat.getDateInstance(DateFormat.LONG);
	byte[] bufout;
	ServletOutputStream out;

	String      closingtext =
	    "Terms of payment: 30 days net. " +
	    "30 days warranty starting at the day of sale. " +
	    "This warranty covers defects in workmanship only. " +
	    "Kraxi Systems, Inc. will, at its option, repair or replace the " +
	    "product under the warranty. This warranty is not transferable. " +
	    "No returns or exchanges will be accepted for wet products.";

	String[][] data = {
	    { "Super Kite",         "20",     "2"},
	    { "Turbo Flyer",        "40",     "5"},
	    { "Giga Trash",         "180",    "1"},
	    { "Bare Bone Kit",      "50",     "3"},
	    { "Nitty Gritty",       "20",     "10"},
	    { "Pretty Dark Flyer",  "75",     "1"},
	    { "Free Gift",          "0",      "1"},
	};

	String[] months = {
	    "January", "February", "March", "April", "May", "June",
	    "July", "August", "September", "October", "November", "December"
	};

	try{
	    p = new pdflib();

	// Generate a PDF in memory; insert a file name to create PDF on disk
	    if (p.begin_document("", "") == -1) {
		throw new Exception("Error: " + p.get_errmsg());
	    }

	    p.set_parameter("SearchPath", searchpath);

	    p.set_info("Creator", "invoiceServlet.java");
	    p.set_info("Author", "Rainer Ploeckl");
	    p.set_info("Title",
		"PDFlib invoice generation demo (Java/Servlet)");

	    stationery = p.open_pdi(infile, "", 0);
	    if (stationery == -1) {
		throw new Exception("Error: " + p.get_errmsg());
	    }

	    page = p.open_pdi_page(stationery, 1, "");
	    if (page == -1) {
		throw new Exception("Error: " + p.get_errmsg());
	    }

	    boldfont = p.load_font("Helvetica-Bold", "unicode", "");
	    regularfont = p.load_font("Helvetica", "unicode", "");
	    leading = fontsize + 2;

	    // Establish coordinates with the origin in the upper left corner.
	    p.set_parameter("topdown", "true");

	    p.begin_page_ext(pagewidth, pageheight, "");       // A4 page

	    p.fit_pdi_page(page, 0, pageheight, "");
	    p.close_pdi_page(page);

	    p.setfont(regularfont, fontsize);

	    // Print the address
	    y = 170;
	    p.set_value("leading", leading);

	    p.show_xy("John Q. Doe", left, y);
	    p.continue_text("255 Customer Lane");
	    p.continue_text("Suite B");
	    p.continue_text("12345 User Town");
	    p.continue_text("Everland");

	    // Print the header and date

	    p.setfont(boldfont, fontsize);
	    y = 300;
	    p.show_xy("INVOICE", left, y);

	    p.fit_textline(fulldate.format(now), right, y, "position {100 0}");

	    // Print the invoice header line
	    p.setfont(boldfont, fontsize);

	    y = 370;

            buf = "\tITEM\tDESCRIPTION\tQUANTITY\tPRICE\tAMOUNT";
            optlist = baseopt + " font " + boldfont;
 
            textflow = p.create_textflow(buf, optlist);

	    if (textflow == -1) {
		throw new Exception("Error: " + p.get_errmsg());
	    }

            p.fit_textflow(textflow, left, y-leading, right, y, "");
            p.delete_textflow(textflow);
 
	    // Print the article list

	    y += 2*leading;
	    total = 0;

	    optlist = baseopt + " font " + regularfont;
	    for (i = 0; i < data.length; i++) {
		sum = Integer.parseInt(data[i][2]) * Integer.parseInt(data[i][1]);
                buf = "\t" + Integer.toString(i+1) + "\t" +data[i][0] + "\t" +
                        data[i][2] + "\t" + data[i][1] + "\t"
                        + Float.toString(sum);
 
                textflow = p.create_textflow(buf, optlist);

		if (textflow == -1) {
		    throw new Exception("Error: " + p.get_errmsg());
		}

                p.fit_textflow(textflow, left, y-leading, right, y, "");
                p.delete_textflow(textflow);

		y += leading;
		total += sum;
	    }

	    y += leading;
	    p.setfont(boldfont, fontsize);
	    p.fit_textline(Float.toString(total), right, y, "position {100 0}");

	    // Print the closing text

	    y += 5*leading;

            optlist = "alignment=justify leading=120% " +
                    "fontname=Helvetica fontsize=12 encoding=unicode ";
 
            textflow = p.create_textflow(closingtext, optlist);

	    if (textflow == -1) {
		throw new Exception("Error: " + p.get_errmsg());
	    }

            p.fit_textflow(textflow, left, y+6*leading, right, y, "");
            p.delete_textflow(textflow);
 
            p.end_page_ext("");
            p.end_document("");

	    p.close_pdi(stationery);

	    bufout = p.get_buffer();

	    response.setContentType("application/pdf");
	    response.setContentLength(bufout.length);

	    out = response.getOutputStream();
	    out.write(bufout);
	    out.close();

        } catch (PDFlibException e) {
	    System.err.print("PDFlib exception occurred in invoice sample:\n");
	    System.err.print("[" + e.get_errnum() + "] " + e.get_apiname() +
			    ": " + e.get_errmsg() + "\n");
        } catch (Exception e) {
            System.err.println(e.getMessage());
        } finally {
            if (p != null) {
		p.delete();			/* delete the PDFlib object */
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?