web-dev-qa-db-ja.com

フォルダの画像からアイコンをJLabelに設定するにはどうすればよいですか?

JComboBoxからアイテムを選択するたびに、画像のフォルダーからJLabelにアイコンを設定しようとしています。 JComboBox内のアイテムの名前とフォルダー内の画像の名前は同じです。したがって、JComboBoxからアイテムを選択するときは常に、同じ名前の対応する画像をアイコンとしてJLabelに設定する必要があります。私はこのようなことをしようとしています。

private void cmb_movieselectPopupMenuWillBecomeInvisible(javax.swing.event.PopupMenuEvent evt){                                                             
        updateLabel(cmb_moviename.getSelectedItem().toString());
}





protected void updateLabel(String name) {
        ImageIcon icon = createImageIcon("C:\\Users\\xerof_000\\Pictures\\tmspictures\\" + name + ".jpg");
        if(icon != null){
            Image img = icon.getImage(); 
            Image newimg = img.getScaledInstance(lbl_pic.getWidth(), lbl_pic.getHeight(),  Java.awt.Image.SCALE_SMOOTH);
            icon = new ImageIcon(newimg);
            lbl_pic.setIcon(icon);
            lbl_pic.setText(null);
        }
        else{
            lbl_pic.setText("Image not found");
            lbl_pic.setIcon(null);
        }
    }





protected static ImageIcon createImageIcon(String path) {
        URL imgURL;
        imgURL = NowShowing.class.getResource(path);
        if (imgURL != null) {
            return new ImageIcon(imgURL);
        } else {
            return null;
        }
    }

問題は「C:\ Users\xerof_000\Pictures\tmspictures \」にあると思いました。「C:/ Users/xerof_000/Pictures/tmspictures /」を使用してみましたが、それでも機能しませんでした。そして、私が何をしても、JLabelに「画像が見つかりません」と表示されるだけです。

6
Raed Shahid

これは私のディレクトリ構造です:

                                packageexample
                                      |
                   -------------------------------------------
                   |                  |                      |
                build(folder)     src(folder)           manifest.txt
                   |                  |
             swing(package)       ComboExample.Java
                   |
            imagetest(subpackage)
                   |
     ComboExample.class + related .class files

これはComboExample.Javaファイルの内容です:

package swing.imagetest;    

import Java.awt.*;
import Java.awt.event.*;
import Java.net.*;
import javax.swing.*;
    
public class ComboExample {

    private String[] data = new String[]{
                                            "geek0",
                                            "geek1",
                                            "geek2",
                                            "geek3",
                                            "geek4"
                                        };
    private String MESSAGE = "No Image to display yet...";
    private JLabel imageLabel;
    private JComboBox cBox;
    private ActionListener comboActions = 
                            new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent ae) {
            JComboBox combo = (JComboBox) ae.getSource();
            ImageIcon image = new ImageIcon(
                        getClass().getResource(
                            "/" + combo.getSelectedItem() + ".gif"));
            if (image != null) {
                imageLabel.setIcon(image);
                imageLabel.setText("");
            } else {
                imageLabel.setText(MESSAGE);
            }
        }    
    };

    private void displayGUI() {
        JFrame frame = new JFrame("Combo Example");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        JPanel contentPane = new JPanel();
        imageLabel = new JLabel(MESSAGE, JLabel.CENTER);
        cBox = new JComboBox(data);
        cBox.addActionListener(comboActions);

        contentPane.add(imageLabel);
        contentPane.add(cBox);

        frame.setContentPane(contentPane);
        frame.pack();
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }

    public static void main(String... args) {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                new ComboExample().displayGUI();
            }
        });
    }
}

コンパイル中:

コンパイルするために私はこれをしました:

Gagandeep Bali@LAPTOP ~/c/Mine/Java/J2SE/src/packageexample
$ javac -d build src/*.Java

マニフェストファイルの内容:

enter image description here

JARファイルの作成:

Gagandeep Bali@LAPTOP ~/c/Mine/Java/J2SE/src/packageexample
$ cd build

Gagandeep Bali@LAPTOP ~/c/Mine/Java/J2SE/src/packageexample/build
$ jar -cfm imagecombo.jar ../manifest.txt *

次に、このJAR Fileをこれらの画像がある任意の場所に移動します(geek0.gif、 geek1.gif、 geek2.gif、 geek3.gif そして geek4.gif)、そしてJAR Fileを実行し、結果を確認します:-)

12
nIcE cOw

アイコンの使用方法 で説明されているように、getResource()メソッドはプログラム内の画像を見つけることを想定しています。 JARファイル。画像をプロジェクトに移動する必要があります。 IconDemo は完全な例です。

3
trashgod
      /*

Create an Image File whose size is 700 x 472 (pixels) in any image editor. 
Here Image was created using MS - Paint.

Make sure that the Image File and the main file are in the same folder.

The size of the JFrame should be set to 700 x 472 (pixels) in the program. 


Set the JLabel's IconImage.

Add the JLabel to the JFrame.

Set JFrame properties.

Display JFrame.

------------------------------------------------------------------------------

label.setIcon(getClass().getResources(String name));

label.setIcon(new ImageIcon(String file));


These 2 methods, don't always work with us. 


So, we create a method "getImageIcon(File f)" that returns a new ImageIcon Object,
everytime a new File Object is passed to it. 


*/




import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JButton;


import Java.awt.Image;
import javax.imageio.ImageIO;
import Java.io.File;
import Java.io.IOException;


import javax.swing.ImageIcon;

import static javax.swing.WindowConstants.*;






public class ImageDemo
{

    JFrame frame = new JFrame();      //initialized


    JLabel label = new JLabel();      //initialized


    JButton button = new JButton();   //initialized


    ImageIcon ii;                //not initialized  





    public void displayImage()
    {

        //Layout Type: Null Layout.

        label.setIcon(getImageIcon(new File("print.png")));


        button.setBounds(150,150,358,66);
        //Note that sizes of the Image and Button are same.
        button.setIcon(getImageIcon(new File("Button.png")));



        label.add(button);
        //add the button to the label


        frame.add(label);
        frame.setBounds(300, 50, 700, 472);
        //(300 x 50 = HorizontalAlignment x VerticalAlignment)
        //(700 x 472 = Width x Height)      

        frame.setTitle("Image Demo");
        frame.setDefaultCloseOperation(EXIT_ON_CLOSE); //WindowConstants.EXIT_ON_CLOSE
        frame.setVisible(true);


    }





    public ImageIcon getImageIcon(File f)
    {


        try
        {
            Image im = ImageIO.read(f);


            ii = new ImageIcon(im);


        }
        catch(IOException i)
        {

            i.printStackTrace();


        }



        finally
        {

            return ii;

        }


    }



    public static void main(String[] args)
    {

        ImageDemo id = new ImageDemo();

        id.displayImage();


    }





}
0
Guest

JLabelを使用しているので、HTMLタグを簡単に使用できます。ラベルのテキストを<html>で始め、必要に応じてラベルでHTMLタグを使用します。ツアーの場合:<img src = filepth\imagefile.jpg> Uはこれを使用できます交換する : )。笑顔のアイコン付き。

0
EsmaeelQash