在黑莓项目中创建的文件类型
我为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.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.