BlackBerry:是否可以从网站(无线)下载应用程序?

发布于 2024-09-01 01:03:53 字数 59 浏览 4 评论 0原文

我想让我的 BlackBerry 应用程序可供使用 BlackBerry 浏览器通过网站下载。这可能吗?

I want would like to make my BlackBerry application available for download through a website using the BlackBerry browser. Is this possible?

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

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

发布评论

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

评论(1

自由如风 2024-09-08 01:03:53

有两种方法可以让您的 BlackBerry 应用程序从网站下载:

1. 无线分发

要允许用户通过无线方式安装应用程序,您需要有一个 Web 服务器。在 Web 服务器上,您需要两个文件:

  • Yourapplication.cod
  • Yourapplication.jad

在 Web 服务器上,您需要设置三种 MIME 类型:

  • .jad 文件:text/vnd.sun.j2me.app-descriptor
  • .cod 文件:application/ vnd.rim.cod
  • .jar 文件(可选):application/java-archive

但是,如果 .cod 文件大于 64KB,则必须在 Web 服务器上解压缩,否则您可能会收到“907 invalid cod” HTTP 错误 404”错误消息。为此,请将 .cod 重命名为 .zip,然后打开 .zip 文件,并将文件内容与 .jad 文件放在 Web 服务器上的同一文件夹中。 (请参阅:https://stackoverflow.com/a/5788124/1943)。下载应用程序的链接应该是 .jad 文件。

2.使用 BlackBerry Application Web Loader

这是一个 ActiveX 插件,可方便下载应用程序。请参阅开发人员文档 了解更多相关信息。

参考:

Vivart 的链接:http://supportforums.blackberry.com/t5/Testing-and-Deployment/How-to-Deploy-and-Distribute-Applications/ta-p/442794

There are two ways to allow your BlackBerry application to be downloaded from a website:

1.Over the Air distribution

To allow users to install the application over the air you will need to have a web server. On the web server you will need two files:

  • Yourapplication.cod
  • Yourapplication.jad

On your web server you will need to setup three MIME types:

  • .jad files: text/vnd.sun.j2me.app-descriptor
  • .cod files: application/vnd.rim.cod
  • .jar files (optional): application/java-archive

However, if the .cod file is larger than 64KB, it must be unzipped on the web server, otherwise you may get a "907 invalid cod HTTP error 404" error message. To do this, rename the .cod to .zip, then open the .zip file and place the file contents in the same folder on the web server alongside your .jad file. (See: https://stackoverflow.com/a/5788124/1943). Links to download your application should be to the .jad file.

2.Using the BlackBerry Application Web Loader

This is an ActiveX plugin that facilitates the download of the application. See the developer documentation for more information on this.

Reference:

Vivart's link: http://supportforums.blackberry.com/t5/Testing-and-Deployment/How-to-Deploy-and-Distribute-Applications/ta-p/442794

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