我试图为另一个程序编写一个简单的GUI。使用Eclipse和插件' WindowBuilder'为了那个原因。这是我到目前为止所得到的:
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.eclipse.wb.swt.SWTResourceManager;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StyledText;
public class LightGUI {
protected Shell shell;
private Text lichterEingabe;
private Text befehleEingabe;
private Text ipEingabe;
private Text portEingabe;
/**
* Launch the application.
* @param args
*/
public static void main(String[] args) {
try {
LightGUI window = new LightGUI();
//PROBLEM APPARENTLY HERE:
window.open();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Open the window.
*/
public void open() {
Display display = Display.getDefault();
createContents();
shell.open();
shell.layout();
while (!shell.isDisposed()) {
//...OR HERE:
if (!display.readAndDispatch()) {
display.sleep();
}
}
}
/**
* Create contents of the window.
*/
protected void createContents() {
shell = new Shell();
shell.setBackground(SWTResourceManager.getColor(230, 230, 250));
shell.setSize(701, 513);
shell.setText("SWT Application");
Label lichter = new Label(shell, SWT.NONE);
lichter.setBackground(SWTResourceManager.getColor(230, 230, 250));
lichter.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
lichter.setBounds(70, 71, 76, 21);
lichter.setText("Lichter:");
Label befehle = new Label(shell, SWT.NONE);
befehle.setBackground(SWTResourceManager.getColor(230, 230, 250));
befehle.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
befehle.setBounds(70, 130, 76, 22);
befehle.setText("Befehle:");
Label ip = new Label(shell, SWT.NONE);
ip.setBackground(SWTResourceManager.getColor(230, 230, 250));
ip.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
ip.setBounds(350, 71, 76, 21);
ip.setText("IP:");
Label port = new Label(shell, SWT.NONE);
port.setBackground(SWTResourceManager.getColor(230, 230, 250));
port.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
port.setBounds(350, 130, 76, 22);
port.setText("Port:");
lichterEingabe = new Text(shell, SWT.BORDER);
lichterEingabe.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
lichterEingabe.setBounds(177, 71, 88, 28);
befehleEingabe = new Text(shell, SWT.BORDER);
befehleEingabe.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
befehleEingabe.setBounds(177, 124, 88, 28);
ipEingabe = new Text(shell, SWT.BORDER);
ipEingabe.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
ipEingabe.setBounds(456, 71, 88, 28);
portEingabe = new Text(shell, SWT.BORDER);
portEingabe.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
portEingabe.setBounds(455, 124, 89, 28);
Button btnNewButton = new Button(shell, SWT.NONE);
btnNewButton.setForeground(SWTResourceManager.getColor(138, 43, 226));
btnNewButton.setFont(SWTResourceManager.getFont("Segoe UI", 14, SWT.BOLD));
btnNewButton.setBounds(417, 239, 120, 49);
btnNewButton.setText("OK!");
Label rueckmeldung = new Label(shell, SWT.NONE);
rueckmeldung.setBackground(SWTResourceManager.getColor(230, 230, 250));
rueckmeldung.setFont(SWTResourceManager.getFont("Segoe UI", 13, SWT.NORMAL));
rueckmeldung.setBounds(70, 319, 134, 28);
rueckmeldung.setText("Rueckmeldung:");
StyledText styledText = new StyledText(shell, SWT.BORDER);
styledText.setFont(SWTResourceManager.getFont("Segoe UI", 10, SWT.NORMAL));
styledText.setEditable(false);
styledText.setBounds(70, 353, 340, 96);
btnNewButton.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event e) {
switch (e.type) {
case SWT.Selection:
rueckmeldung.setText(null);
if(lichterEingabe.getText()!=null && befehleEingabe.getText()!=null && ipEingabe.getText()!=null && portEingabe.getText()!=null){
new Steuerung(Integer.parseInt(lichterEingabe.getText()), Integer.parseInt(befehleEingabe.getText()));
}
break;
}
}
});
}
}
窗口可见,并且在启动后全部显示。这是我的代码的结果:
一个是将数字写入四个文本字段(第五个,较大的一个用于显示错误消息的唯一目的)。填充完所有后,必须单击OK按钮。基于此,一些计算将在后台进行(计算在此工作之前不会相关)。
但是,会发生以下情况: 我单击按钮后,我的窗口会自动消失。 Eclipse控制台显示以下错误消息:
java.lang.IllegalArgumentException: Argument cannot be null
at org.eclipse.swt.SWT.error(SWT.java:4514)
at org.eclipse.swt.SWT.error(SWT.java:4448)
at org.eclipse.swt.SWT.error(SWT.java:4419)
at org.eclipse.swt.widgets.Widget.error(Widget.java:482)
at org.eclipse.swt.widgets.Label.setText(Label.java:403)
at LightGUI$1.handleEvent(LightGUI.java:126)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4418)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1079)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4236)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3824)
at LightGUI.open(LightGUI.java:49)
at LightGUI.main(LightGUI.java:34)
任何人都可以看到我不喜欢的东西吗?为什么会这样?不应该有任何可见的变化,但程序似乎认为' window.open();'或者display.readAndDispatch()由于某种原因返回null?
关于究竟是什么问题的提示将受到赞赏,因为我甚至没有最微弱的想法。
答案 0 :(得分:1)
正如错误消息所示:Argument cannot be null
你有rueckmeldung.setText(null);
。请改用rueckmeldung.setText("");
,因为空标签不包含null
值,而是空字符串。
出于同样的原因
if(lichterEingabe.getText()!=null && befehleEingabe.getText()!=null && ipEingabe.getText()!=null && portEingabe.getText()!=null)
您可能希望用!...getText().isEmpty()
替换空检查。