Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
Afficher une image dans un jar
Article publié le 12/11/2008 11:59:59Pour afficher les images contenues dans un jar, nous pouvons utiliser le code suivant :
Code Java (1 ligne)
Par exemple, voici ma structure de fichiers :
- broldev.core
- src
- main
- java (le code source)
- be
- gaudry
- broldev
- model
- ...
- view
- ...
- model
- broldev
- gaudry
- be
- resources (les fichiers non-java)
- images
- properties
- java (le code source)
- main
- src
et voici une énumération qui me permet de récupérer mes images :
Code Java (71 lignes)
/** * */ package be.gaudry.view.utils; import javax.swing.Icon; import javax.swing.ImageIcon; /** * @date 03-juil.-08 * @author Steph GAUDRY * */ public enum BrolImagesCore { /** * Blue plus image */ ADD("brolAddBtn.gif"), /** * Start process image (green triangle) */ START("PlayHS.png"), /** * Stop process image (blue square) */ STOP("StopHS.png"), /** * Save document (blue floppy disc) */ SAVE("saveHS.png"), /** * Edit field (pen) */ EDIT("brolEditBtn.png"), /** * Small printer like Xp */ PRINT("PrintHS.png"), /** * Opened folder like Xp */ EXPLORE("explore.png"), /** * Red cross */ REMOVE("brolDelBtn.png"), /** * Big printer like Vista */ PRINTER("Printer.png"), /** * */ REFRESH("RepeatHS.png"), /** * */ ATTACHMENT("AttachmentHS.png"); String imagefilename; this.imagefilename = "images/" + imagefilename; } BrolImagesCore.class.getClassLoader().getResource(imagefilename) ); } }
Attention à ne pas utiliser le séparateur de fichiers, car dans un jar cela ne fonctionne pas de la même manière.
Au début j’utilisais
Code Java (1 ligne)
ce qui fonctionnait quand j’exécutais ce projet, mais plus quand j’appelais ce projet sous forme de jar.
J’ai donc remplacé la ligne par ceci :
Code Java (1 ligne)
imagefilename = "images/" + name;
Et ça fonctionne :-)
Un article de Steph
Source : indéterminée
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-446.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.