IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Java Discussion :

Problème export fichier jar runnable avec images


Sujet :

Java

  1. #1
    Membre à l'essai
    Homme Profil pro
    Enseignant
    Inscrit en
    Mai 2015
    Messages
    14
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 43
    Localisation : France, Nord (Nord Pas de Calais)

    Informations professionnelles :
    Activité : Enseignant
    Secteur : Enseignement

    Informations forums :
    Inscription : Mai 2015
    Messages : 14
    Points : 11
    Points
    11
    Par défaut Problème export fichier jar runnable avec images
    Bonsoir,

    J'ai besoin de votre aide...cela fait des jours que je cherche pour exporter mon fichier java sous eclipse...avec des images...mais quand j'exécute mon fichier jar (qui contient les images) celles-çi n'apparaissent pas.

    Qui pourrait m'expliquer mon erreur (ou mes erreurs), svp?

    Merci pour votre aide...
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.Graphics;
    import java.awt.Image;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
     
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
     
    public class Main {
        // ====================DECLARATION ET
        // INITIALISATION===========================//
        static private JTextField pourcentage = new JTextField(30);
        static private JTextField essai = new JTextField(20);
        static private int score;
        static private int total;
        static private JButton btnMore = new JButton(new ImageIcon("ok.png"));
        static private JButton btnLess = new JButton(new ImageIcon("no.png"));
        static private JButton reInitialize = new JButton("Remettre à zéro");
        static private JButton closeFrame = new JButton("QUITTER");
     
        public static void main(String[] args) {
            // =====================MISE EN FORME DE LA
            // FENETRE==========================//
            JFrame frame = new JFrame();
            frame.setVisible(true);
            frame.setTitle("EPS COMPTEUR - LYCEE FENELON");
            frame.setSize(800, 600);
            frame.setResizable(true);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            // =================================================================//
            // ======================FOND ECRAN============================//
            JPanel content = new ImagePanel(new ImageIcon("fond.png").getImage());
            // =================================================================//
            // ======================AJOUT PANNEAU DANS LA
            // FENETRE==============================//
            frame.setContentPane(content);
            // =================================================================//
            // ======================CHOIX TAILLE ET POLICE DU
            // JLABEL==============================//
            Font f = new Font("Serif", Font.PLAIN, 36); // par exemple
            essai.setFont(f);
            pourcentage.setFont(f);
            Font ft = new Font("Serif", Font.PLAIN, 40 );
            reInitialize.setFont(ft);
            closeFrame.setFont(ft);
            // =================================================================//
            // ============MISE EN FORME DES BOUTONS MISE A ZERO ET
            // QUITTER============================//
            essai.setBackground(Color.YELLOW);
            essai.setBorder(null);
            pourcentage.setBackground(Color.YELLOW);
            pourcentage.setBorder(null);
            // =================================================================//
            // ======================AJOUT DES ELEMENTS AU PANNEAU============================//
     
            content.add(btnMore);
            content.add(btnLess);
            content.add(essai);
            content.add(pourcentage);
            content.add(reInitialize);
            content.add(closeFrame);
            // =================================================================//
            // =====================AFFICHAGE ICONE COIN DE
            // FENETRE=======================//
            frame.setIconImage(new ImageIcon("icon_splash_background.png").getImage());
            // =================================================================//
            // ==============EVENEMENT EN CAS DE CLIC SUR BOUTON
            // OK==========================//
            btnMore.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    // quand on a cliqué sur le bouton ici
                    score++;
                    total++;
                    updateLabel();
                    updateLabelTry();
     
                }
            });
            // =================================================================//
            // ============EVENEMENT EN CAS DE CLIC SUR BOUTON
            // NO============================//
            btnLess.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    // quand on a cliqué sur le bouton ici
                    total++;
                    updateLabel();
                    updateLabelTry();
                }
            });
            // =================================================================//
            // ==========EVENEMENT EN CAS DE CLIC SUR BOUTON
            // QUITTER============================//
            closeFrame.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    if (e.getSource() == closeFrame) {
                        frame.dispose();
                    }
                }
            });
            // ===============================================================================//
            // ==================EVENEMENT EN CAS DE CLIC SUR BOUTON MISE A
            // ZERO==============//
            reInitialize.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    if (e.getSource() == reInitialize) {
                        score = 0;
                        total = 0;
                        pourcentage.setText(" ");
                        essai.setText(" ");
                    }
                }
            });
        }
     
        // =================================================================//
        // ===============FONCTION POURCENTAGE=========================//
        private static double getAverage() {
            try {
                return 100 * score / total;
            } catch (ArithmeticException e) {
                return 0;
            }
        }
     
        // =================================================================//
        // ===============FONCTION MISE A JOUR DU TEXTE
        // POURCENTAGE==============================//
        private static void updateLabel() {
            pourcentage.setText("Taux de réussite : " + Double.toString(getAverage()) + " %");
        }
     
        // =================================================================//
        // ==============FONCTION MISE A JOUR DU TEXTE NB
        // ESSAI=====================//
        private static void updateLabelTry() {
            essai.setText("Essai : " + score + " / " + total);
        }
     
        /*
         * Classe image background
         */
        static class ImagePanel extends JPanel {
     
            private static final long serialVersionUID = 1L;
            private Image img;
     
            public ImagePanel(String img) {
                this(new ImageIcon(img).getImage());
            }
     
            public ImagePanel(Image img) {
                this.img = img;
            }
     
            public void paintComponent(Graphics g) {
                g.drawImage(img, 0, 0, null);
            }
            /*
             * ====================================================
             */
     
        }
    }

  2. #2
    Modérateur
    Avatar de joel.drigo
    Homme Profil pro
    Ingénieur R&D - Développeur Java
    Inscrit en
    Septembre 2009
    Messages
    12 430
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Ingénieur R&D - Développeur Java
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2009
    Messages : 12 430
    Points : 29 131
    Points
    29 131
    Billets dans le blog
    2
    Par défaut
    Salut,

    C'est parce que dans new ImageIcon("icon_splash_background.png"), le paramètre constitue un chemin de fichier, et exportée dans un jar, l'image ne constitue pas un fichier. Il faut utiliser un paramètre de type URL, que tu peux obtenir par la méthode getResource() de Class ou ClassLoader. Par ailleurs, tu devrais plutôt utiliser ImageIO pour charger tes images, parce que ImageIcon est asynchrone : l'image peut ne pas être chargée lorsque tu appelles getImage().

Discussions similaires

  1. Exporter en un fichier jar exécutable avec des ressources
    Par Marvelll dans le forum Eclipse Java
    Réponses: 1
    Dernier message: 04/06/2010, 15h38
  2. Réponses: 3
    Dernier message: 23/12/2008, 13h24
  3. Réponses: 3
    Dernier message: 27/10/2007, 01h39
  4. Problème de fichier jar avec eclipse<débutant>
    Par melodie53 dans le forum Eclipse Java
    Réponses: 7
    Dernier message: 28/07/2006, 16h41
  5. Problème exportation fichier jar + mysql
    Par oliwan dans le forum Eclipse Java
    Réponses: 4
    Dernier message: 07/05/2006, 21h58

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo