我在通过 Eclipse 运行 Java 应用程序时遇到问题。单击运行后,提示显示:
“断言失败!程序:../truetype.c 行:2133
表达式:字形!= NULL
(请重试调试应用程序 - 必须启用 JIT)"
* 单击重试后,提示显示“javaw.exe 已停止工作”。
我试图重新启动我的笔记本电脑,但问题仍然存在。任何人都知道如何解决它?提前致谢。
编辑 1: 下面是我尝试运行的代码。
public static void main(String[] args) {
initView();
}
private static void initView() {
final JFrame frame = new JFrame();
frame.setTitle("Testing 101");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JTextField nameTextField = new JTextField();
frame.getContentPane().add(nameTextField);
JButton saveButton = new JButton();
saveButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(frame, "Hello "+nameTextField.getText());
}
});
frame.getContentPane().add(saveButton);
// Display.
frame.pack();
frame.setVisible(true);
}