Tag: browser plugin

如何在我的gwt应用程序中导入java.security。*

我想用gwt开发一个插件。 它必须使用java.security。*来生成客户端密钥。 我已经提出了所有要求但它显示以下错误。 加载模块 coreservlets.GwtApp1 Loading inherited module ‘coreservlets.GwtApp1’ Loading inherited module ‘java.security.KeyPair’ [ERROR] Unable to find ‘java/security/KeyPair.gwt.xml’ on your classpath; >could be a typo, or maybe you forgot to include a classpath entry for source? [ERROR] Line 15: Unexpected exception while processing element ‘inherits’ 我在我的gwtapp1.gwt.xml文件中inheritance了所有相关的类,如“java.security.KeyPair” 我也在classpath本身包含jar。但仍然没有错误。 我该怎么办.plz建议这里是我的java代码 package coreservlets.client; import java.io.UnsupportedEncodingException; import java.security.KeyPair; import […]