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

Astuces de l’Infobrol (Java)Article publié le 12/11/2008 11:59:59


Pour afficher les images contenues dans un jar, nous pouvons utiliser le code suivant :
  1. new ImageIcon( MyClass.class.getClassLoader().getResource(path_from_the_source_directory) );


Par exemple, voici ma structure de fichiers :



  • broldev.core
    • src
      • main

        • java (le code source)
          • be
            • gaudry
              • broldev
                • model
                  • ...
                • view
                  • ...


        • resources (les fichiers non-java)
          • images
          • properties






et voici une énumération qui me permet de récupérer mes images :
  1. /**
  2.  *
  3.  */
  4. package be.gaudry.view.utils;
  5.  
  6. import javax.swing.Icon;
  7. import javax.swing.ImageIcon;
  8.  
  9. /**
  10.  * @date 03-juil.-08
  11.  * @author Steph GAUDRY
  12.  *
  13.  */
  14. public enum BrolImagesCore {
  15. /**
  16. * Blue plus image
  17. */
  18. ADD("brolAddBtn.gif"),
  19. /**
  20. * Start process image (green triangle)
  21. */
  22. START("PlayHS.png"),
  23. /**
  24. * Stop process image (blue square)
  25. */
  26. STOP("StopHS.png"),
  27. /**
  28. * Save document (blue floppy disc)
  29. */
  30. SAVE("saveHS.png"),
  31. /**
  32. * Edit field (pen)
  33. */
  34. EDIT("brolEditBtn.png"),
  35. /**
  36. * Small printer like Xp
  37. */
  38. PRINT("PrintHS.png"),
  39. /**
  40. * Opened folder like Xp
  41. */
  42. EXPLORE("explore.png"),
  43. /**
  44. * Red cross
  45. */
  46. REMOVE("brolDelBtn.png"),
  47. /**
  48. * Big printer like Vista
  49. */
  50. PRINTER("Printer.png"),
  51. /**
  52. *
  53. */
  54. REFRESH("RepeatHS.png"),
  55. /**
  56. *
  57. */
  58. ATTACHMENT("AttachmentHS.png");
  59.  
  60. String imagefilename;
  61.  
  62. private BrolImagesCore(String imagefilename) {
  63. this.imagefilename = "images/" + imagefilename;
  64. }
  65.  
  66. public Icon getIcon() {
  67. return new ImageIcon(
  68. BrolImagesCore.class.getClassLoader().getResource(imagefilename)
  69. );
  70. }
  71. }


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
  1. imagefilename = "images"+ File.separatorChar + name;

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 :
  1. imagefilename = "images/" + name;


Et ça fonctionne :-)

Avatar :: Steph Un article de Steph

Source : indéterminée


Sélection, tri et recherche d'articles
FILTRER :
TRIER :1er critère : 2e critère :
CHERCHER : Dans les titres Dans le contenu


[Afficher les liens en fonction des critères du formulaire ci-dessus]

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.