Here is just a simple demo, we can see how does PDF renderer works.package pdfpaneltest;import com.sun.pdfview.PDFFile;
import com.sun.pdfview.PDFPage;
import com.sun.pdfview.PagePanel;
import java.io.*;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import javax.swing.*;/**
 * An example of using the PagePanel class to show PDFs. For more advanced
 * usage including navigation and zooming, look ad the 
 * com.sun.pdfview.PDFViewer class.
 *
 * @author [email protected]
 */
public class Main {    public static void setup() throws IOException {
    
        //set up the frame and panel
        JFrame frame = new JFrame("PDF Test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        PagePanel panel = new PagePanel();
        frame.add(panel);
        frame.pack();
        frame.setVisible(true);        //load a pdf from a byte buffer
        File file = new File("test.pdf");
        RandomAccessFile raf = new RandomAccessFile(file, "r");
        FileChannel channel = raf.getChannel();
        ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY,
            0, channel.size());
        PDFFile pdffile = new PDFFile(buf);        // show the first page
        PDFPage page = pdffile.getPage(0);
        panel.showPage(page);
        
    }    public static void main(final String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                try {
                    Main.setup();
                } catch (IOException ex) {
                    ex.printStackTrace();
                }
            }
        });
    }
}
Simple hmm..  Actually, I have trid to use acrobat,  but got problem to render the pdf in a JPanel. That I will get out of momenry error.  so I wonder if there is some other better solution? 

解决方案 »

  1.   

    从哪里可以得到com.sun.pdfview包?
      

  2.   

    com.sun.pdfview包捏,在程序都不存在这个包
      

  3.   

    按有几个群,你不妨加进去,可以和大家一起讨论啊.........46986340,28039577,4804620                                                          \                            
    在那里看看有无能回答你的,谢谢,LZ,甭忘了给俺分哦,谢谢LZ