Java Web 启动选项
我正在使用 javaws 在 OS X 10.5.7、Java(TM) SE 运行时环境(内部版本 1.6.0_13-b03-211)中运行应用程序,并且似乎命令行参数在 os X 中被破坏。我运行在linux中执行以下命令,效果很好。
javaws -wait -J"-Djavaws.package.runtype=debug" http://company.com/launch.jnlp
运行时给了我属性
javaws.package.runtype=debug.
但是当我在 os X 中运行相同的参数时,我得到
jnlpx.vmargs = -Djavaws.package.runtype=debug
这是一个错误,还是只是一个未知的功能?
I am using javaws to run an application in OS X 10.5.7, Java(TM) SE Runtime Environment (build 1.6.0_13-b03-211), and it seems that the command line arugments are broken in os X. I run the following command in linux and it works fine.
javaws -wait -J"-Djavaws.package.runtype=debug" http://company.com/launch.jnlp
and the runtime gives me the property
javaws.package.runtype=debug.
But when I run the same arugment in os X, I get
jnlpx.vmargs = -Djavaws.package.runtype=debug
Is this an error, or just an unknown feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用于
找出颚的用法。
与往常一样,您可以添加“-verbose”来显示附加输出以调试错误。
use
to find out the usage of jawaws.
As always, you can add "-verbose" to display additional output to debug your errors.