如何提供.jad文件下载链接?
我们正在尝试在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说听起来像是网络服务器配置错误,与 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.
尽管这可能是服务器配置问题,但设备可能正在请求不存在的其他文件。
JAD 文件是 Java 应用程序描述符 (JAD),J2ME (CLDC/MIDP) 应用程序使用它来描述与应用程序关联的 Java 模块。对于 BlackBerry 应用程序,JAD 描述了代表应用程序编译版本的 COD 文件集合。 BlackBerry RAPC 编译器编译为单个 COD 文件,但当您的应用程序变得足够大时,此文件通常包含其他 COD 文件的集合。
尝试执行以下步骤:
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: