A voir également:
- [Java] Mettre contenu pdf dans un JPanel
- Lire le coran en français pdf - Télécharger - Histoire & Religion
- Jeux java itel - Télécharger - Jeux vidéo
- Waptrick java football - Télécharger - Jeux vidéo
- Waptrick java voiture - Télécharger - Jeux vidéo
- Save as pdf office 2007 - Télécharger - Bureautique
3 réponses
Bonjour,
afficher du pdf dans un JPanel?j'ai jamais entendu parler de ca que veux-tu faire exactement?explique c'est à ce moment la que je pourrais t'aider.
Bon courage!
afficher du pdf dans un JPanel?j'ai jamais entendu parler de ca que veux-tu faire exactement?explique c'est à ce moment la que je pourrais t'aider.
Bon courage!
si tu présume afficher puis sortir voila la solution
mai si tu veut afficher un fichier le modifier puis afficher une autre foi,la je suis a la recherche d'une solution moi aussi car
https://stackoverflow.com/questions/4179145/release-java-file-lock-in-windows
public PDFView() throws IOException
{
// set up the frame and panel
getJFrame4().setVisible(true);
// load a pdf from a byte buffer
File file = new File(".//temp//page1.pdf");
RandomAccessFile raf = new RandomAccessFile(file, "r");
FileChannel channel = raf.getChannel();
ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY, 0, channel
.size());
pdffile = new PDFFile(buf);
// show the first page
goToPage(1);
}
public void loadPdf(File file) throws IOException
{
// load a pdf from a byte buffer
RandomAccessFile raf = new RandomAccessFile(file, "r");
FileChannel channel = raf.getChannel();
ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY, 0, channel
.size());
pdffile = new PDFFile(buf);
// show the first page
PDFPage page2 = pdffile.getPage(currentPage);
jPanel3.showPage(page2);
}
public void goToPage(int nbpage) throws IndexOutOfBoundsException
{
if(nbpage<1||nbpage>pdffile.getNumPages())
throw new IndexOutOfBoundsException("Invalid index requested :"+nbpage);
PDFPage page = pdffile.getPage(nbpage);
jPanel3.showPage(page);
}
mai si tu veut afficher un fichier le modifier puis afficher une autre foi,la je suis a la recherche d'une solution moi aussi car
https://stackoverflow.com/questions/4179145/release-java-file-lock-in-windows