如何提供.jad文件下载链接?

发布于 2024-12-06 05:07:10 字数 274 浏览 0 评论 0原文

我们正在尝试在index.html 中提供abc.jad 文件的下载链接。 abc.jad 和index.html 都位于同一文件夹中。以下是链接。

<a href="abc.jad" type="text/vnd.sun.j2me.app-descriptor">download</a>

尽管如此,我们仍然无法从网络浏览器下载该文件。它总是给出错误 HTTP 错误 404 - 未找到文件或目录。我能对此问题做什么?请任何人给我解决方案。

We are trying to provide a download link to abc.jad file in index.html. abc.jad and index.html are both in the same folder. Following is the link.

<a href="abc.jad" type="text/vnd.sun.j2me.app-descriptor">download</a>

In spite of these, we are still not able to download this file from the web browser. It always gives the error HTTP Error 404 - File or directory not found .what can i do for that Problem? please any one give me the solution .

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

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

发布评论

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

评论(2

残龙傲雪 2024-12-13 05:07:10

对我来说听起来像是网络服务器配置错误,与 Blackberrys 或 JAD 无关。

如果您无法使用网络浏览器下载文件,则需要检查您的网络服务器。

Sounds like a webserver configuration error to me, and nothing to do with Blackberrys or JADs.

If you can't download a file using a web browser, you need to check out your web server.

本宫微胖 2024-12-13 05:07:10

尽管这可能是服务器配置问题,但设备可能正在请求不存在的其他文件。

JAD 文件是 Java 应用程序描述符 (JAD),J2ME (CLDC/MIDP) 应用程序使用它来描述与应用程序关联的 Java 模块。对于 BlackBerry 应用程序,JAD 描述了代表应用程序编译版本的 COD 文件集合。 BlackBerry RAPC 编译器编译为单个 COD 文件,但当您的应用程序变得足够大时,此文件通常包含其他 COD 文件的集合。

尝试执行以下步骤:

  • 在存档应用程序中打开应用程序 COD(WinZip、WinRAR、7-zip 等)
  • 将应用程序 COD 中的所有 COD 文件提取到与 JAD 文件相同的目录
  • 尝试下载 JAD 文件

Although this is likely a server configuration issue, it is possible that the device is requesting additional files that do not exist.

A JAD file is a Java Application Descriptor (JAD) that J2ME (CLDC/MIDP) applications use to describe the Java modules associated with an application. In the case of BlackBerry applications, a JAD describes a collection of COD files that represent the compiled version of your application. The BlackBerry RAPC compiler compiles to a single COD file, but this file typically contains a collection of other COD files when your application becomes large enough.

Try performing these steps:

  • Open application COD in archive application (WinZip, WinRAR, 7-zip, etc)
  • Extract all COD files in application COD to same directory as JAD file
  • Attempt to download JAD file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文