首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

java.lang.NoClassDefFoundError,swt程序运行异常

2012-12-24 
java.lang.NoClassDefFoundError,swt程序运行错误点击右边红色标题查看本文完整版:java.lang.NoClassDefFo

java.lang.NoClassDefFoundError,swt程序运行错误
点击右边红色标题查看本文完整版:java.lang.NoClassDefFoundError,swt程序运行错误

我新建了一个windows application,运行时总是报错说:'java.lang.NoClassDefFoundError',还弹出一个窗口说:'could not find the main class ,program will exit'


以下是源代码
package com.swtdesigner;

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class HelloWorld {

private static Text text;
/**
* Launch the application
* @param args
*/
public static void main(String[] args) {
final Display display = Display.getDefault();
final Shell shell = new Shell();
shell.setSize(500, 375);
shell.setText( "SWT Application ");
//

shell.open();

text = new Text(shell, SWT.BORDER);
text.setBounds(152, 135, 80, 25);
shell.layout();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
}

}


------解决方法--------------------
经测试,正常显示。
去掉包结构看看,这个com.swtdesigner好像和swtdesigner同包名

    

热点排行