小程序执行无法执行打包在可执行 jar 内的批处理文件
我正在通过我的java程序执行bat文件。该路径是在 java 中硬编码的。
我已经将bat文件打包在jar中。jar包含主类作为小程序类。
我从 jsp 页面调用这个 jar 文件作为小程序。
小程序运行成功,但无法在 init 内运行 bat 文件。
如果我给出硬编码路径,那么它会执行...但无法执行从 jar 中获取。
对于打包此类 jar(即内部有一个 bat 文件并能够将其作为动态小程序运行)有任何提示吗?
I am executing a bat file through my java program. the path is hardcoded in java.
I have packaged bat file in the jar.and jar contains main class as an applet class.
i am calling this jar file from jsp page as applet.
applet run successfully but couldn't run bat file inside init.
If i give hard coded path then it executes ...but can't execute taking from jar.
Any hints for packaging such jar i.e having a bat file inside and able to run it as dynamic applet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您试图在这里做两件不可能的事情:
小程序在安全沙箱中运行。你需要了解它。阅读 http://download.oracle.com/javase/tutorial/deployment/小程序/security.html
You're trying to make two impossible things here:
Applets run in a security sandbox. You need to learn about it. Read http://download.oracle.com/javase/tutorial/deployment/applet/security.html