我的 j2me NetBeans6.5 项目中的 SVG 错误
我使用 svgForms、svgMenus 和 svgSplashScreen,但在预验证(最后)步骤中总是出现一个烦人的错误,如下所示:
Error preverifying class org.w3c.dom.svg.SVGElement
java/lang/NoClassDefFoundError: org/w3c/dom/Element
似乎需要添加一个库,但我在这里碰壁了。 我的 svg 文件都是 baseProfile='tiny'。
提前致谢 :)
I use svgForms, svgMenus and svgSplashScreen, but one annoying error always appears in the pre verification (last) step, which is the following:
Error preverifying class org.w3c.dom.svg.SVGElement
java/lang/NoClassDefFoundError: org/w3c/dom/Element
It seems like it needs a library to be added, but I have hit the wall here. My svg files are all of baseProfile='tiny'.
Thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要预验证器类路径上的 JSR226 存根。 该文件通常称为 jsr226_1.1.jar。
一旦您指定了您使用哪些工具来构建应用程序,我就可以提供更多帮助。
You need stubs for JSR226 on the preverifier class-path. The file is usually called jsr226_1.1.jar.
Once you specify what tools exaxtly are you using to build the application I could be able to help more.
在项目属性中,选择“平台”,然后查看“可选包”区域。
然后,您可以从那里选择 SVG API 来添加缺少的组件。
In your project properties, select "Platform", then look into the "Optional Packages" area.
From there, you can then select the SVG API to add the missing component.