0

我有一些值要导出到 PDF,我如何在 struts 中做到这一点?

我想执行以下操作,当用户单击按钮或链接时有选项按钮或链接,而不是用户应该获得下载选项来下载导出的 PDF 文件。

我有一个需要导出为 PDF 的结果集。

请帮助我如何去做。

问候

4

2 回答 2

2

看看这个动作类的例子,它可能会对你有所帮助。

       import javax.servlet.http.HttpServletRequest;
       import javax.servlet.http.HttpServletResponse;
       import org.apache.struts.action.ActionForm;
       import org.apache.struts.action.ActionForward;
       import org.apache.struts.action.ActionMapping;
       import com.lowagie.text.pdf.*;
       import com.lowagie.text.*;
       import java.io.*;

        public class download extends org.apache.struts.action.Action {

        /* forward name="success" path="" */
        private static final String SUCCESS = "success";


        @Override
        public ActionForward execute(ActionMapping mapping, ActionForm form,
        HttpServletRequest request, HttpServletResponse response)
        throws Exception {
        Document document=new Document();
        System.out.println(clientIp);
        response.setContentType("application/octet-stream");
        response.setHeader("Content-Disposition","attachment;filename=temp.pdf");
        try
    {
    OutputStream out = response.getOutputStream();
    PdfWriter.getInstance(document,out);
            document.open();
            document.add(new Paragraph("Hello Pdf"));
            document.close();

    }
        finally
        {
          return mapping.findForward(SUCCESS);
        }
    }

还要根据它更新你的 struts-config.xml。

于 2012-09-05T09:34:04.297 回答
1

这是一个可以帮助你做你想做的事的例子:

import java.io.*;
import java.sql.*;
import com.lowagie.text.*;
import com.lowagie.text.pdf.*;

public class CreatePDF{
    public static void main(String arg[])throws Exception{
        Document document = new Document();
        PdfWriter.getInstance(document, new FileOutputStream("C:/data.pdf"));

        document.open();

        PdfPTable table = new PdfPTable(2);
        table.addCell("Name");
        table.addCell("Address");

        Class.forName("com.mysql.jdbc.Driver");
        Connection con = DriverManager.getConnection(
                                        "jdbc:mysql://localhost:3306/test",
                                        "root", "root");

        Statement st = con.createStatement();
        ResultSet rs = st.executeQuery("Select * from data");

        while(rs.next()) {
            table.addCell(rs.getString("name"));
            table.addCell(rs.getString("address"));
        }

        document.add(table);
        document.close();
    }
}

但在实施之前,您必须将其itext.jar放入您的WEB-INF/lib文件夹中。而且您还发现了很多方法来操作您的 pdf 文件。

于 2012-09-05T05:48:54.560 回答