1

次のコードのような panel.java ファイルがあります。

import java.awt.*;
import javax.swing.*;

public class Paneel extends JFrame
{
    public static void main ( String [] args )
    {
        // frame
        JFrame frame = new Paneel();
        frame.setSize ( 1000, 1000 );
        frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        frame.setTitle( "Remembory" );
        frame.setVisible( true );
    }
    
    class Gifpaneel extends JPanel{
        private ImageIcon gif, animatedGif;
        
        public Gifpaneel() {
            gif = new ImageIcon( "test.gif" );
            animatedGif = new ImageIcon( "animaties/test.gif" );
        }       
        
        public void paintComponent( Graphics g ){
            super.paintComponent( g );
            
            gif.paintIcon( this, g, 100, 100 );
            animatedGif.paintIcon ( this, g, 250, 100 );
        }
        
    }
}

test.gif ファイルを表示したいと思います。どうすればこれを完了できますか? Eclipseで実行すると、画像が含まれていないjframeしか取得できないためです。

4

4 に答える 4

14

これを使って

import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.*;

public class ImageInFrame {
    public static void main(String[] args) throws IOException {
        String path = "Image1.jpg";
        File file = new File(path);
        BufferedImage image = ImageIO.read(file);
        JLabel label = new JLabel(new ImageIcon(image));
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.getContentPane().add(label);
        f.pack();
        f.setLocation(200,200);
        f.setVisible(true);
    }
}
于 2013-09-18T11:47:09.113 に答える
3

画像へのファイルパスを設定する必要があります..このようなもの

final ImageIcon icon = new ImageIcon("C:\\Users\\you\\Desktop\\test.gif");
于 2013-09-18T11:38:49.027 に答える
2
public static void main ( String [] args )
{
    // frame
    JFrame frame = new Paneel();
    frame.setSize ( 1000, 1000 );
    frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    frame.setTitle( "Remembory" );

    // Add following
    GifPaneel gifpan = new GifPaneel();
    gifpan.repaint();
    frame.add(gifpan);


    frame.setVisible( true );
}
于 2013-09-18T11:38:17.410 に答える
-1

プロジェクトファイルにイメージという名前のパッケージを作成し、その特定のパッケージにイメージをインポートします。次に、ラベルを取得してアイコン プロパティを選択し、クラス パスから画像を選択します。

于 2014-08-23T06:47:49.347 に答える