作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的表单上有 2 个 JTextField,并且我全局声明了这 2 个变量
int order = Integer.parseInt(textOrder.getText());
int history = Integer.parseInt(textHistory.getText());
但我遇到了这些错误。
java.lang.NullPointerException
at FrameController.<init>(FrameController.java:39)//this is line 39: int history=Integer.parseInt(textHistory.getText());
at FrameController$1.run(FrameController.java:56)//this is line 56: FrameController window = new FrameController();
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
at java.awt.EventQueue.access$500(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
最佳答案
JTextField textOrder=new JTextField();
textOrder.getText() // NullPointerException if the document is null
根据文档getText()
返回此TextComponent
中包含的文本。如果底层文档为 null,将给出 NullPointerException。
如果您使用这些构造函数之一,则文档为空。
JTextField()
、JTextField(String text)
、JTextField(int columns)
、JTextField(String text, int columns) )
关于java - 如何从 JTextField 读取 int 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43957854/
我是一名优秀的程序员,十分优秀!