在黑莓项目中创建的文件类型

发布于 2024-11-04 06:52:48 字数 283 浏览 0 评论 0原文

我为 BlackBerry 创建了第一个 Hello world 项目,并在 deliverables 文件夹中创建了以下文件:

 - HelloWorld.cod
 - HelloWorld.cso
 - HellowWorld.debug
 - HelloWorld.jad
 - HelloWorld.jar 
 - HelloWorld.rapc

这些文件各自的用途是什么?我至少知道 jar 文件必须部署为移动应用程序。但是所有其他文件呢?

I created my first Hello world project for BlackBerry and following files were created in the deliverables folder:

 - HelloWorld.cod
 - HelloWorld.cso
 - HellowWorld.debug
 - HelloWorld.jad
 - HelloWorld.jar 
 - HelloWorld.rapc

What is the purpose of each of these files? I know at least that the jar file must be deployed as a mobile application. But what about all other files?

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

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

发布评论

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

评论(1

公布 2024-11-11 06:52:48

.cod 文件基本上是 BlackBerry 的专有版本的 .jar 文件。 (这通常是从 App Store 下载的版本。)

.cso 文件是对应用程序进行签名时使用的帮助程序文件。 (它说明需要哪些键。).

debug 文件是在调试器中运行应用程序时使用的帮助程序文件。

.jad 文件描述应用程序以帮助设备了解其是否兼容。 (如果您从网站而不是 App Store 下载到 BlackBerry,则您需要将链接指向该文件,其中包含 cod/jar 的路径。)

.jar 文件是主应用程序文件MIDP 是一种通用的移动 Java 运行时环境。

.rapc 是 BlackBerry JDE 在编译/构建项目时使用的帮助程序文件。

The .cod file is basically BlackBerry's proprietary version of the .jar file. (This is usually the version downloaded from the App Store.)

The .cso file is a helper file used when signing the application. (It says which keys are needed.)

The .debug file is a helper file used when running the application in the debugger.

The .jad file describes the application to help the device know if it's compatible. (If you were downloading onto a BlackBerry from a website instead of the App Store, this is the file you'd point your link at, which would contain the path to the cod/jar.)

The .jar file is the main application file for MIDP, which is sort of a generalised mobile java runtime environment.

The .rapc is a helper file used by the BlackBerry JDE when it's compiling/building the project.

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