错误:“模块‘myApp’”是什么意思?在偏移 1646”处有验证错误 2733意思是

发布于 2024-10-07 16:37:03 字数 798 浏览 0 评论 0原文

我收到以下错误:

模块“myApp”有验证错误 2733,偏移量 1646

,这是我的代码:

public class Midlet extends net.rim.device.api.ui.UiApplication{

public static void main(String[] argv) {
     new Midlet().startApp();
}

public void startApp() {
    System.out.println("tada!");
}

public void pauseApp() {
    System.out.println("PauseApp ...zzzz...");
}

public void destroyApp(boolean unconditional) {
    System.out.println("destroyed: " + unconditional);
}

public void notifyDestroyed() {
    System.exit(0);
}

public void platformRequest(String s) {
    net.rim.blackberry.api.browser.Browser.getDefaultSession().displayPage(s);
}

}

我的导入“LWUIT”、“BlackberryPort”和“LWUIT4IO”。

它构建时没有错误,当我尝试启动应用程序时出现错误。

这个错误是什么意思?

I get the following error:

Module 'myApp' has verification error
2733 at offset 1646

and this is my code:

public class Midlet extends net.rim.device.api.ui.UiApplication{

public static void main(String[] argv) {
     new Midlet().startApp();
}

public void startApp() {
    System.out.println("tada!");
}

public void pauseApp() {
    System.out.println("PauseApp ...zzzz...");
}

public void destroyApp(boolean unconditional) {
    System.out.println("destroyed: " + unconditional);
}

public void notifyDestroyed() {
    System.exit(0);
}

public void platformRequest(String s) {
    net.rim.blackberry.api.browser.Browser.getDefaultSession().displayPage(s);
}

}

My Imports "LWUIT", "BlackberryPort" and "LWUIT4IO".

It builds without errors, I get the error when I try to start up the app.

What does this error mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风夜微凉 2024-10-14 16:37:03

您签署了您的应用程序吗?浏览器集成需要应用程序签名。

另请参阅 LWUIT 博客 解释验证错误。

Have you signed your app? Browser integration requires app signing.

Also take a look at the LWUIT blog explains the verification errors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文