- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码如下:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package swagpad;
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
import java.awt.event.*;
public class NoteDetailsUI extends JFrame{
NoteCntl theNoteCntl;
Note theCurrentNote;
JButton backButton;
JButton newButton;
JButton savebutton;
JButton deleteButton;
JTextField date;
JTextField name;
JTextField number;
JLabel dateLabel;
JLabel nameLabel;
JLabel bodyLabel;
JLabel numberLabel;
JTextArea body;
JPanel mainPanel;
JPanel buttonPanel;
JPanel fieldPanel;
JPanel areaPanel;
public NoteDetailsUI(NoteCntl theParentNoteCntl, Note theSelectedNote){
theNoteCntl = theParentNoteCntl;
theCurrentNote = theSelectedNote;
this.initComponents();
this.setSize(400, 500);
this.setLocationRelativeTo(null);
this.setTitle("Notes List");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
public void initComponents(){
//Component initializations
JButton deleteButton = new JButton("Delete");
JButton backButton = new JButton("Back");
backButton.addActionListener(new BackButtonListener());
JButton saveButton = new JButton("Save");
saveButton.addActionListener(new SaveButtonListener());
JButton newButton = new JButton("New");
JTextField date = new JTextField(10);
JTextField name = new JTextField(10);
JTextField number = new JTextField(10);
JTextArea body = new JTextArea();
JPanel mainPanel = new JPanel(new BorderLayout());
JPanel buttonPanel = new JPanel();
JPanel fieldPanel = new JPanel();
JPanel areaPanel = new JPanel(new GridBagLayout());
JLabel dateLabel = new JLabel("Date");
JLabel nameLabel = new JLabel("Note Title");
JLabel bodyLabel = new JLabel("Enter Note Text Here");
JLabel numberLabel = new JLabel("Note Number");
//Setup for the various panels. The button/textfield panels are default flow layouts, the areaPanel is a GridBag because I like the fill function
//of Gridbag for this application. Mainpanel is a borderlayout.
//Button Panel setup.
buttonPanel.add(backButton);
buttonPanel.add(saveButton);
buttonPanel.add(newButton);
buttonPanel.add(deleteButton);
// TextField Panel setup
fieldPanel.add(numberLabel);
fieldPanel.add(number);
fieldPanel.add(nameLabel);
fieldPanel.add(name);
fieldPanel.add(dateLabel);
fieldPanel.add(date);
//AreaPanel setup with Constraints for GridBag.
GridBagConstraints bodyConstraints = new GridBagConstraints();
bodyConstraints.fill = GridBagConstraints.BOTH;
bodyConstraints.ipadx = 200;
bodyConstraints.ipady = 300;
bodyConstraints.weightx = 1;
bodyConstraints.weighty = 1;
areaPanel.add(bodyLabel);
areaPanel.add(body, bodyConstraints);
//MainPanel setup
this.add(mainPanel);
mainPanel.add(buttonPanel, BorderLayout.NORTH);
mainPanel.add(fieldPanel, BorderLayout.CENTER);
mainPanel.add(areaPanel, BorderLayout.SOUTH);
}
public class SaveButtonListener implements ActionListener{
public void actionPerformed(ActionEvent evt){
if(theCurrentNote == null){
System.out.println("null?");
//Error is here. Not sure why I'm getting nulls from the getText());
int noteNum = Integer.parseInt(NoteDetailsUI.this.number.getText());
int theNoteDate = Integer.parseInt(NoteDetailsUI.this.date.getText());
String theNoteName = NoteDetailsUI.this.name.getText();
String theNoteBody = NoteDetailsUI.this.body.getText();
NoteDetailsUI.this.theCurrentNote = new EssayNote(noteNum, theNoteDate, theNoteName, theNoteBody);
NoteDetailsUI.this.theNoteCntl.newNote(theCurrentNote);
NoteDetailsUI.this.setVisible(false);
NoteDetailsUI.this.dispose();
NoteDetailsUI.this.theNoteCntl.getNoteTableModel();
}
else{
}
}
}
//Sends you back to the Note Table UI.
public class BackButtonListener implements ActionListener{
public void actionPerformed(ActionEvent evt){
NoteDetailsUI.this.theNoteCntl.getNoteTableUI();
NoteDetailsUI.this.setVisible(false);
}
}
}
我的错误如下:
线程“AWT-EventQueue-0”中出现异常 java.lang.NullPointerException 在 swagpad.NoteDetailsUI$SaveButtonListener.actionPerformed(NoteDetailsUI.java:103)
我尝试通过谷歌搜索并研究为什么会出现此错误。常见的响应似乎是带有局部变量或未初始化文本字段/变量的阴影实例变量,但据我所知,我没有这样做。任何帮助将不胜感激。
最佳答案
接下来您在 initComponents
方法中将 date,name,number,body
初始化为本地字段时出现问题。
JTextField date = new JTextField(10);
JTextField name = new JTextField(10);
JTextField number = new JTextField(10);
JTextArea body = new JTextArea();
因为你的类变量date,name,number,body
为空。为了避免它使用下面的代码:
date = new JTextField(10);
name = new JTextField(10);
number = new JTextField(10);
body = new JTextArea();
似乎是所有类变量的问题。不要将它们初始化为局部变量。
编辑:将您的 initComponents()
方法更改为下一个:
public void initComponents(){
deleteButton = new JButton("Delete");
backButton = new JButton("Back");
backButton.addActionListener(new BackButtonListener());
savebutton = new JButton("Save");
savebutton.addActionListener(new SaveButtonListener());
newButton = new JButton("New");
date = new JTextField(10);
name = new JTextField(10);
number = new JTextField(10);
body = new JTextArea();
mainPanel = new JPanel(new BorderLayout());
buttonPanel = new JPanel();
fieldPanel = new JPanel();
areaPanel = new JPanel(new GridBagLayout());
dateLabel = new JLabel("Date");
nameLabel = new JLabel("Note Title");
bodyLabel = new JLabel("Enter Note Text Here");
numberLabel = new JLabel("Note Number");
buttonPanel.add(backButton);
buttonPanel.add(savebutton);
buttonPanel.add(newButton);
buttonPanel.add(deleteButton);
// TextField Panel setup
fieldPanel.add(numberLabel);
fieldPanel.add(number);
fieldPanel.add(nameLabel);
fieldPanel.add(name);
fieldPanel.add(dateLabel);
fieldPanel.add(date);
//AreaPanel setup with Constraints for GridBag.
GridBagConstraints bodyConstraints = new GridBagConstraints();
bodyConstraints.fill = GridBagConstraints.BOTH;
bodyConstraints.ipadx = 200;
bodyConstraints.ipady = 300;
bodyConstraints.weightx = 1;
bodyConstraints.weighty = 1;
areaPanel.add(bodyLabel);
areaPanel.add(body, bodyConstraints);
//MainPanel setup
this.add(mainPanel);
mainPanel.add(buttonPanel, BorderLayout.NORTH);
mainPanel.add(fieldPanel, BorderLayout.CENTER);
mainPanel.add(areaPanel, BorderLayout.SOUTH);
}
它解决了所有由类变量引起的NPE
。
了解更多关于variables的信息
关于java - JTextField getText() NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19916507/
我有一个 Web 应用程序,其中有几个使用 gettext 的翻译。但是现在我已经对应用程序进行了重大重写,虽然大多数字符串是相同的,但也有相当多的字符串被显着更改或删除。 我使用 xgettext
我开始尝试在 C 程序中翻译一些最常用的文本条目 使用 gettext,但在深入研究时,我得到了一点 对所有不同的文件格式有点困惑 因为功能上似乎有些重叠? 我想了解不同格式的概述 .po .pot
gettext 是否有办法警告我有关未包装在 _() 或 N_() 中的字符串? 基本上有没有一种方法可以获取所有不与 xgettext 使用的关键字匹配的字符串的列表。所以,我想要: ! xgett
我们正在使用 Gettext 翻译我们的网站,但最近我们发现我们的翻译团队存在一些问题。 我们有一些像... Hi Bob this evening you win *three* red *ball
我尝试运行 Homebrew 程序,以便在 5 月份的 mac 上安装一些 unix 工具,但开始时遇到问题。我已经删除了 fink 和 macports 并安装了 Homebrew 软件。 (我正在
是否可以使两个或多个 msgid 与一个 msgstr 匹配? 例如,('list.empty')和('list.empty') null') 返回“还没有任何对象。” 如果我在 po 文件中这样写:
所以,我一直在查看 getText() 方法,并且了解到它返回一个 CharSequence。所以你不能只这样做: TextView myTextView = (TextView) findViewB
我正在尝试 gettext 并运行 msginit --locale=en --input=messages.po这就是我所看到的: [... blah ...] Is the following y
我们目前正在国际化我们的平台。平台的代码库和基于该平台构建的产品非常庞大,并且有许多硬编码字符串(除了我们将标签等外部化的 UI)。 我需要一些关于使用 gettext 或 Java i18n 的建议
我用 gettext翻译我的用户界面。我想写符号 %作为字符串中 UI 标题的一部分,但由于它具有特殊含义,因此无法按预期工作。如何转义百分比符号? 最佳答案 使用 %%逃脱%。 关于gettext
我发现字符串 (msgid) 的翻译为空,所有 gettext 工具都会将该字符串视为未翻译。 有解决方法吗?我确实希望有一个空字符串作为此项目的翻译。 最佳答案 由于这似乎是 gettext 规范中
所以我注意到似乎有两种方法可以获取相同的数据,我不确定是否有关于何时应该使用其中任何一种的指南(除了绕过 getResources 可以节省内存,如果你实际上不想多次使用该对象)。但除此之外,我想知道
例如在下面的代码中a和b和c是相等的。 EditText editText; editText = (EditText) findViewById(R.id.edttxt); editText.set
我想从 9 X 9 网格中排列的 81 个文本字段中获取 int 形式的文本,但不想单独进行。我试图将它放在一个循环中,但问题是文本字段名称必须以 a[i][j] 形式显示。 for (i = 0;
我想使用 angular-gettext 在我的应用程序上实现 i18n,我遵循了这个 http://lostechies.com/gabrielschenker/2014/02/11/angular
我遵循了在 Windows 上安装 gettext 的指导,当我在命令提示符中键入 xgettext --version 时,它说它已安装。但是当我想运行这个命令时: python manage.py
所以我正在尝试让 phpmyadmin 在 Windows 7 上运行,我已经完成并安装了所有正确的程序/文件(apache、mySQL、php 等),我在右边有 phpmyadmin 文件夹放在我的
我正在尝试设置 phpMyAdmin,并且我正在关注此 site ,但我收到一个关于“ fatal error :在第 177 行调用 C:\Users\Jarek\mywebsite\phpMyAd
我需要解析我的 php 文件,其中使用了多个文本域。我只想解析一个特定的域(其他域已经被翻译)如何让 Poedit 做到这一点? 是否需要编译绑定(bind)到某个文本域的mo文件?如果是的话,如何在
当我尝试在 vala 中使用 gettext 时,我没有收到来自 vala 的错误或警告,但我从 c 编译器收到以下错误: /usr/include/glib-2.0/glib/gi18n-lib.h
我是一名优秀的程序员,十分优秀!