Excepción en subproceso AWT-EventQueue-0 java.lang.NullPointerException
La excepción "AWT-EventQueue-0" java.lang.NullPointerException
ocurre cuando trabajamos con métodos de paquetes Java AWT, y se pasa un valor nulo
a cualquier método. Este tutorial demuestra cómo resolver esta NullPointerException
en Java.
Excepción en el subproceso "AWT-EventQueue-0" java.lang.NullPointerException
en Java
La "AWT-EventQueue-0" java.lang.NullPointerException
ocurre cuando pasamos un valor nulo al paquete AWT. La excepción NullPointerException
es la más común en Java.
La NullPointerException
se produce cuando se cumple alguna de las siguientes condiciones.
- Al acceder y modificar el campo de objeto
nulo
. - Cuando invocamos un método desde un objeto
null
. - Al acceder y modificar los slots del objeto
null
. - Al tomar la longitud de cualquier matriz
nula
. - Cuando intentamos sincronizar sobre un objeto
nulo
. - Cuando estamos arrojando un valor
nulo
.
Probemos un ejemplo que arrojará la "AWT-EventQueue-0" java.lang.NullPointerException
en Java.
package delftstack;
import java.awt.*;
import java.awt.event.*;
import java.util.Timer;
import javax.swing.*;
@SuppressWarnings("serial")
public class Example extends JFrame implements ActionListener, KeyListener {
static Dimension Screen_Size = new Dimension(Toolkit.getDefaultToolkit().getScreenSize());
Insets Scan_Max = Toolkit.getDefaultToolkit().getScreenInsets(getGraphicsConfiguration());
int Task_Bar_Size = Scan_Max.bottom;
static JFrame Start_Screen = new JFrame("Start Screen");
static JFrame Game_Frame = new JFrame("Begin the Game!");
static JLabel Cow_Label = new JLabel();
static int Sky_Int = 1;
static JLabel Sky_Label = new JLabel();
static int SECONDS = 1;
static boolean IS_Pressed = false;
public static void main(String[] args) {
new Example();
}
public Example() {
JPanel Buttons_Panel = new JPanel();
Buttons_Panel.setLayout(null);
Start_Screen.setSize(new Dimension(
Screen_Size.width - getWidth(), Screen_Size.height - Task_Bar_Size - getHeight()));
Start_Screen.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Start_Screen.setVisible(true);
System.out.println(Start_Screen.getSize());
// buttons
JButton Start_Button = new JButton("Start");
Start_Button.addActionListener(this);
Start_Button.setSize(
(int) Start_Screen.getWidth() / 7, (int) (Start_Screen.getHeight() / 15.36));
Start_Button.setBounds((Start_Screen.getWidth() / 2) - Start_Button.getWidth() / 2,
((int) Start_Screen.getHeight() / 2) - Start_Button.getHeight(), Start_Button.getWidth(),
Start_Button.getHeight());
Start_Button.setActionCommand("Start");
Buttons_Panel.add(Start_Button);
Start_Screen.add(Buttons_Panel);
}
@Override
public void actionPerformed(ActionEvent Action_Event) {
Object CMD_Object = Action_Event.getActionCommand();
if (CMD_Object == "Start") {
Start_Screen.setVisible(false);
// getClass().getResource("/cow.png") and getClass().getResource("/grass.png") is giving null
// because there is no image in folder named cow.png or grass.png
ImageIcon Cow_Image = new ImageIcon(getClass().getResource("/cow.png"));
ImageIcon Grass_Image = new ImageIcon(getClass().getResource("/grass.png"));
Game_Frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Game_Frame.setSize(Start_Screen.getSize());
Game_Frame.setVisible(true);
JPanel Demo_Panel = new JPanel();
Demo_Panel.setBackground(Color.white);
Demo_Panel.setLayout(null);
Demo_Panel.setFocusable(true);
Game_Frame.add(Demo_Panel);
Demo_Panel.addKeyListener(this);
Cow_Label.setBounds(
(Start_Screen.getWidth() / 2) - 105, (Start_Screen.getHeight() / 2) - 55, 210, 111);
Cow_Label.setIcon(Cow_Image);
Demo_Panel.add(Cow_Label);
Demo_Panel.setVisible(true);
Cow_Label.setVisible(true);
JLabel Grass_Label = new JLabel();
System.out.println("grass");
// getClass().getResource("/Sky.png") will throw a nullpointerexception because there is no
// image in the folder
ImageIcon Sky1 = new ImageIcon(getClass().getResource("/Sky.png"));
Sky_Label.setIcon(Sky1);
Grass_Label.setIcon(Grass_Image);
Grass_Label.setBounds(0, (Start_Screen.getHeight() - 308), Start_Screen.getWidth(), 350);
System.out.println("mOooow");
Demo_Panel.add(Grass_Label);
Sky_Label.setBounds(1, 56, 1366, 364);
Demo_Panel.add(Sky_Label);
System.out.println("google");
}
}
@Override
public void keyPressed(KeyEvent Key_Event) {
int CMD_Int = Key_Event.getKeyCode();
// getClass().getResource("/cow moving.gif") will throw a nullpointerexception because there is
// no image in the folder
ImageIcon Moving_Cow = new ImageIcon(getClass().getResource("/cow moving.gif"));
System.out.println(CMD_Int);
IS_Pressed = true;
if (CMD_Int == 39) {
System.out.println("Key is Pressed");
Cow_Label.setIcon(Moving_Cow);
} else if (CMD_Int == 37) {
}
System.out.println("End");
while (IS_Pressed == true) {
Timer Wait_Please = new Timer("Wait Please");
try {
Wait_Please.wait(1000);
} catch (InterruptedException p) {
}
int SKY = 1;
SKY += 1;
String SKY_String = "/Sky" + String.valueOf(SKY) + ".png";
ImageIcon SKy = new ImageIcon(getClass().getResource(SKY_String));
Sky_Label.setIcon(SKy);
if (IS_Pressed == false) {
Wait_Please.cancel();
break;
}
}
}
@Override
public void keyReleased(KeyEvent Key_Event) {
// getClass().getResource("/cow.png") and getClass().getResource("/grass.png") is giving null
// because there is no image in folder named cow.png or grass.png
ImageIcon Cow_Image = new ImageIcon(getClass().getResource("/cow.png"));
int CMD_Int = Key_Event.getKeyCode();
IS_Pressed = false;
if (CMD_Int == 39) {
Cow_Label.setIcon(Cow_Image);
} else if (CMD_Int == 37) {
Cow_Label.setIcon(Cow_Image);
}
}
@Override
public void keyTyped(KeyEvent c) {
// TODO Auto-generated method stub
}
}
El código anterior se trata de un juego simple con una vaca parada, y la vaca comenzará a moverse al presionar el botón. Lanzará la "AWT-EventQueue-0" java.lang.NullPointerException
porque el método AWT new ImageIcon(getClass().getResource())
obtiene una entrada nula
.
La salida para este código es:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException: Cannot invoke "java.net.URL.toExternalForm()" because "location" is null
at java.desktop/javax.swing.ImageIcon.<init>(ImageIcon.java:234)
at delftstack.Example.actionPerformed(Example.java:48)
at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1972)
at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2313)
...
Podemos resolver este problema moviendo las imágenes a la ruta de la carpeta de clase. También podemos eliminar el /
ya que Windows usa \\
para la ruta en Java.
Y si sigue sin funcionar, podemos dar la ruta completa a las imágenes. Más explicaciones están comentadas en el código anterior.
Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.
LinkedIn FacebookArtículo relacionado - Java Exception
- Arreglar Java.Net.SocketException: error de tubería rota en Java
- Clase de excepción Java Throwable VS
- Comprender la excepción de tiempo de ejecución en Java
- Corrija la excepción Java.Net.BindException: la dirección ya está en uso: Bind
- El proceso de Java Gateway se cerró antes de enviar su número de puerto
- Excepción de entrada no válida en Java