我用 Java 创建了我的第一个应用程序(但已经用 C# 和 Python 编程)并且遇到了一个我什至无法理解的问题,因为调试器消息对用户非常不友好。;-)
调试器输出如下所示:
调试:在 Kwestionariusz.MainWindow.access$100(MainWindow.java:14) 在 Kwestionariusz.MainWindow.jButton1ActionPerformed(MainWindow.java:176) 在 Kwestionariusz.MainWindow$2 的线程“AWT-EventQueue-0”java.lang.NullPointerException 中的异常。 actionPerformed(MainWindow.java:72) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel .java:402) 在 javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259) 在 javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252) 在 java.awt.Component.processMouseEvent(Component. java:6505) 在 javax.swing.JComponent。processMouseEvent(JComponent.java:3321) 在 java.awt.Component.processEvent(Component.java:6270) 在 java.awt.Container.processEvent(Container.java:2229) 在 java.awt.Component.dispatchEventImpl(Component.java :4861) 在 java.awt.Container.dispatchEventImpl(Container.java:2287) 在 java.awt.Component.dispatchEvent(Component.java:4687) 在 java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832) 在 java .awt.LightweightDispatcher.processMouseEvent(Container.java:4492) 在 java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422) 在 java.awt.Container.dispatchEventImpl(Container.java:2273) 在 java.awt.Window。 dispatchEventImpl(Window.java:2719) 在 java.awt.Component.dispatchEvent(Component.java:4687) 在 java.awt.EventQueue.dispatchEventImpl(EventQueue.java:703) 在 java.awt。位于 java.awt.EventQueue$3.run(EventQueue.java:662) 的 EventQueue.access$000(EventQueue.java:102) 位于 java.security.AccessController 的 java.awt.EventQueue$3.run(EventQueue.java:660)。 doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87) at java.awt.EventQueue$4.run(EventQueue.java :676) 在 java.awt.EventQueue$4.run(EventQueue.java:674) 在 java.security.AccessController.doPrivileged(Native Method) 在 java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) 在 java. awt.EventQueue.dispatchEvent(EventQueue.java:673) 在 java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:244) 在 java.awt.EventDispatchThread。pumpEventsForFilter(EventDispatchThread.java:163) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java :139) 在 java.awt.EventDispatchThread.run(EventDispatchThread.java:97) 构建成功(总时间:16 秒)
可能与此操作有关:
if (("".equals(login) ) || ("".equals(password)) || ("".equals(accountType)))
{}
else
{
Users user;
user = (Users) db.createNamedQuery("Users.findByLoginAndType")
.setParameter("login", login)
.setParameter("company", accountBool)
.getSingleResult();
if (password.equals(user.getPassword()))
{
JFrame appWindow;
appWindow = new AppWindow();
this.setVisible(false);
appWindow.setVisible(true);
}
}
在哪里:
@NamedQuery(name = "Users.findByLoginAndType", query = "SELECT u FROM Users u WHERE u.login = :login AND u.company = :companyBool LIMIT 1")