PDF-bean???是什么东西啊?有没有这样的代码呢?
iTextAsian.jar我知道,不知道有没有实现代码?

解决方案 »

  1.   

    <%@
    page import="java.io.*,
     com.lowagie.text.*,
     com.lowagie.text.pdf.*"
    %><%
    //
    // Template JSP file for iText
    // by Tal Liron
    //response.setContentType( "application/pdf" );// step 1: creation of a document-object
    Document document = new Document();// step 2:
    // we create a writer that listens to the document
    // and directs a PDF-stream to a temporary bufferByteArrayOutputStream buffer = new ByteArrayOutputStream();
    PdfWriter.getInstance( document, buffer );// step 3: we open the document
    document.open();// step 4: we add a paragraph to the document
    document.add(new Paragraph("Hello World"));// step 5: we close the document
    document.close();// step 6: we output the writer as bytes to the response output
    DataOutput output = new DataOutputStream( response.getOutputStream() );
    byte[] bytes = buffer.toByteArray();
    response.setContentLength(bytes.length);
    for( int i = 0; i < bytes.length; i++ ) { output.writeByte( bytes[i] ); }
    %>
    ---------
    iText的
      

  2.   

    谢谢你的代码,但是还是没有解决实质的问题,还是无法读出PDF内容来。