GUIにエラーがあります。タイトルバーアイコンを設定して、Runnable JARに含めようとします。
BufferedImage image = null;
try {
image = ImageIO.read(getClass().getClassLoader().getResource("resources/icon.gif"));
}
catch (IOException e) {
e.printStackTrace();
}
frame.setIconImage(image);
ここに私が得ているエラーがあります:
Exception in thread "main" Java.lang.IllegalArgumentException: input == null!
at javax.imageio.ImageIO.read(Unknown Source)
at GUI.<init>(GUI.Java:39)
at GUI.main(GUI.Java:351)
イメージは、「resources」フォルダーがプロジェクトファイルのルートである正しいディレクトリにあります。
まず、この行を変更します:
_image = ImageIO.read(getClass().getClassLoader().getResource("resources/icon.gif"));
_
これに:
_image = ImageIO.read(getClass().getResource("/resources/icon.gif"));
_
詳細情報、2つのアプローチの違いはどこにあるかについては、このスレッドで見つけることができます- リソースをロードするさまざまな方法
Eclipseの場合:
NetBeansの場合:
IntelliJ IDEAの場合:
最後のリンクを使用して、Javaコードでこのファイルにアクセスする方法を確認してください。この例では、
getClass().getResource("/resources/images/myImage.imageExtension");
押す Shift + F10、プロジェクトを作成して実行します。 resources and imagesフォルダーは、outフォルダー内に自動的に作成されます。
手動で行う場合:
クイックリファレンスコードの例(詳細については、少し余分な説明リンクを検討してください):
_package swingtest;
import Java.awt.*;
import Java.awt.image.BufferedImage;
import Java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.*;
/**
* Created with IntelliJ IDEA.
* User: Gagandeep Bali
* Date: 7/1/14
* Time: 9:44 AM
* To change this template use File | Settings | File Templates.
*/
public class ImageExample {
private MyPanel contentPane;
private void displayGUI() {
JFrame frame = new JFrame("Image Example");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
contentPane = new MyPanel();
frame.setContentPane(contentPane);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
private class MyPanel extends JPanel {
private BufferedImage image;
public MyPanel() {
try {
image = ImageIO.read(MyPanel.class.getResource("/resources/images/planetbackground.jpg"));
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
@Override
public Dimension getPreferredSize() {
return image == null ? new Dimension(400, 300): new Dimension(image.getWidth(), image.getHeight());
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(image, 0, 0, this);
}
}
public static void main(String[] args) {
Runnable runnable = new Runnable() {
@Override
public void run() {
new ImageExample().displayGUI();
}
};
EventQueue.invokeLater(runnable);
}
}
_
はるかに簡単な方法を使用して、画像をフレームアイコンとしてロードおよび設定します。
_frame.setIconImage(
new ImageIcon(getClass().getResource("/resources/icon.gif")).getImage());
_
そして、それだけです:)! ImageIcon
は宣言された例外をスローしないため、try-catchブロックを使用する必要さえありません。また、getClass().getResource()
により、アプリケーションの実行方法に応じて、ファイルシステムとjarの両方から機能します。
画像が使用可能かどうかを確認する必要がある場合は、getResource()
によって返されるURLがnull
であるかどうかを確認できます。
_URL url = getClass().getResource("/resources/icon.gif");
if (url == null)
System.out.println( "Could not find image!" );
else
frame.setIconImage(new ImageIcon(url).getImage());
_