Это мой код:
packagejavaproject;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class Game implements Runnable {
public void run() {
// Top-level frame display the Title of the game
final JFrame frame = new JFrame("Tron");
frame.setBackground(Color.BLACK);
frame.setPreferredSize(new Dimension(500,560));
frame.setLocation(400, 100);
frame.setResizable(false);
// main menu panel
final JPanel mainMenu = new JPanel();
mainMenu.setLayout(new BorderLayout());
mainMenu.setBackground(Color.BLACK);
// main menu screen image
@SuppressWarnings("serial")
final JComponent pict = new JComponent() {
public void paintComponent(Graphics gc) {
super.paintComponent(gc);
Picture.draw(gc, "image", 0, 0);
}
};
Он работает, но не может показать изображение, он показывает: «Не могу прочитать входной файл!».Как я могу закончить с изображением?Благодарю.Файл изображения