- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用的是最新版本的 LWUIT (1.5)。我在资源编辑器中设计了我的表单,然后将代码生成到 netbeans。问题是如果我想访问除表单之外的任何对象,我会收到此错误:
java.lang.NullPointerException at userclasses.StateMachine.onCtnCalculation_BtnAddAction(StateMachine.java:38) at generated.StateMachineBase.handleComponentAction(StateMachineBase.java:712) at com.sun.lwuit.util.UIBuilder$FormListener.actionPerformed(UIBuilder.java:2231) at com.sun.lwuit.util.EventDispatcher.fireActionSync(EventDispatcher.java:312) at com.sun.lwuit.util.EventDispatcher.fireActionEvent(EventDispatcher.java:257) at com.sun.lwuit.Button.fireActionEvent(Button.java:364) at com.sun.lwuit.Button.released(Button.java:395) at com.sun.lwuit.Button.released(Button.java:384) at com.sun.lwuit.Button.keyReleased(Button.java:413) at com.sun.lwuit.Form.keyReleased(+64) at com.sun.lwuit.Display.handleEvent(Display.java:1533) at com.sun.lwuit.Display.edtLoopImpl(Display.java:826) at com.sun.lwuit.Display.mainEDTLoop(Display.java:776) at com.sun.lwuit.RunnableWrapper.run(RunnableWrapper.java:119)
这是我的代码:
protected void onCtnCalculation_BtnAddAction(Component c, ActionEvent event) {
// If the resource file changes the names of components this call will break notifying you that you should fix the code
super.onCtnCalculation_BtnAddAction(c, event);
Form root = Display.getInstance().getCurrent();
TextField txtAmount = findTxtAmount(root);
fltAmount += Float.parseFloat(txtAmount.getText());
}
我也试过这个:
fltAmount += Float.parseFloat(findTxtAmount(root).getText());
最佳答案
文本金额字段是当前表单中的组件还是其他表单中的组件。如果它采用不同的形式,那么这将不起作用。
关于nullpointerexception - 无法访问除窗体之外的任何对象,NullPointerException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13305211/
对于一个科学实验,我写了一个turtle.py ,它会打开一个 800x480 的窗口并绘制一个缓慢增长的黑点。 turtle.py以 C:\Users\kaza>python C:\Users\ka
我开发了一个 swing 应用程序,但每次运行应用程序时都会打开一个新窗口。我希望如果一个窗口已经打开,则其他窗口不允许打开。 最佳答案 Here是一个 Java 单一应用实例的例子: A singl
有没有办法检测主进程中 Electron 的结构? process.platform 似乎也在 x64 机器上返回 win32,我没有在文档中找到任何获取架构的选项。 最佳答案 你试过 process
public short[] HanningWindow(short[] signal_in ,int pos ,int size) { for (int i= pos; i < pos+si
我有一个具有这些属性的 Electron 窗口: mainWindow = new BrowserWindow({ width: 800, height: 600, title: "Aqu
我有一个 Ubuntu 工作站,我正在尝试引导一个 Windows 节点。 Windows 节点在端口 2222 上打开了 ssh。我一直在关注 http://docs.opscode.com/plu
我是一名优秀的程序员,十分优秀!