java swt button事件中为什么不能判断文本框是否为某个字符串
//设置text控件初始值txtNX=newText(this,SWT.BORDER);txtNX.setText("请在这输入初始值");txtNX.setBounds...
//设置text控件初始值
txtNX = new Text(this, SWT.BORDER);
txtNX.setText("请在这输入初始值");
txtNX.setBounds(284, 52, 157, 22);
...
//先输入text中的字符为"san",然后点击button判断text的字符是否为san,如果是就在控制台输出,现在的实际情况是什么都不输出!!
Button button_1 = new Button(this, SWT.NONE);
button_1.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
if (txtNX.getText() == "san")
{
System.out.println("butsdfasdfd");
}
}
});
高手,帮帮忙,下次有分就给你,呵呵 展开
txtNX = new Text(this, SWT.BORDER);
txtNX.setText("请在这输入初始值");
txtNX.setBounds(284, 52, 157, 22);
...
//先输入text中的字符为"san",然后点击button判断text的字符是否为san,如果是就在控制台输出,现在的实际情况是什么都不输出!!
Button button_1 = new Button(this, SWT.NONE);
button_1.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
if (txtNX.getText() == "san")
{
System.out.println("butsdfasdfd");
}
}
});
高手,帮帮忙,下次有分就给你,呵呵 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询