//源代码
import org.jdesktop.jdic.desktop.*;
import java.net.*;
public class JdicTest {
    public static void main(String[] args)
            throws Exception {
        Desktop.browse(
            new URL("http://www.yahoo.com/")
            );
    }
}
//错误Exception in thread "main" java.lang.NoClassDefFoundError: org/jdesktop/jdic/desktop/internal/impl/ServiceManagerStub
at org.jdesktop.jdic.desktop.internal.ServiceManager.getService(Unknown Source)
at org.jdesktop.jdic.desktop.Desktop.browse(Unknown Source)
at JdicTest.main(JdicTest.java:6)
//环境
我的jdic.jar已经配到class_path中了     如:.;%java_home%\lib;c:\jdic.jar本地库文件 tray.dll    jdic.dll    MozEmbed.exe    IeEmbed.exe   
都已经拷贝到system32目录下了(我是Windows2000 sp4系统)谢谢指点!!