Blackberry JDE 生成错误的 .jad 文件(与编译的 .cod 文件不匹配)

发布于 2024-08-30 23:47:57 字数 572 浏览 5 评论 0原文

我有一个 BB 应用程序,它被编译成 3 个同级 cod 文件。 (实际上一个 cod 文件包含 3 个子 cod 文件)。

app.cod
|--app.cod
|--app-1.cod
|--app-2.cod

这是正常的。

jad 指的是这 3 个内部 .cod 文件。

现在我已经向我的应用程序添加了一些功能,它变得更大了一些。 jad 现在引用 4 个内部 .cod 文件。 但是生成的app.cod里面还是有3个。

所以我现在仍然有,

app.cod
|--app.cod
|--app-1.cod
|--app-2.cod

但 jad 指的是 app.cod、app-1.cod、app-2.cod 和 app-3.cod。

这导致 OTA 下载失败并出现以下错误:

907 无效 COD HTTP 错误 404:不是 找到了

我编译的程序有什么问题吗?这是 JDE 的错误吗?

我使用的是JDE 4.5

I Have a BB application that gets compiled into 3 siblings cod file. ( actualy one cod fil contaning 3 sub cod files).

app.cod
|--app.cod
|--app-1.cod
|--app-2.cod

which is normal.

the jad refers to those 3 inner .cod files.

Now I have add some feature to my app, it is getting a little bit bigger.
the jad now refers to 4 inner .cod files.
but there is still 3 inside the app.cod that is generated.

so I now still have

app.cod
|--app.cod
|--app-1.cod
|--app-2.cod

but with the jad referring to app.cod, app-1.cod, app-2.cod, AND app-3.cod.

this is causing OTA download to fail with the following error:

907 invalid COD HTTP Error 404 : not
found

what is wrong the my compiled program? is it a bug from the JDE?

I am using JDE 4.5

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

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

发布评论

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

评论(1

巾帼英雄 2024-09-06 23:47:57

我的假设是,jad 构建器不知何故感到困惑,也许它在压缩中获得了比预期更多的空间?要么向您的应用程序添加另一个图像以使其更大一点,要么您可以使用

updateJad.exe app.jad

这将更新 jad 文件的大小以匹配所有内容。

该文件位于 /bin 文件夹中,其中包含 javaloader 和 JDE 安装的其他文件。

My assumption is that somehow the jad builder got confused, and maybe it gained a little more space in compression than it expected? either add another image to you application to make it a little larger or you can use

updateJad.exe app.jad

this will update the sizing of the jad file to match everything.

the file is located in the /bin folder with javaloader and other files of your JDE install.

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