在.jnlp中指定临时目录
我正在访问一个在网站上运行的 java 小程序(我无法访问/修改内容),您可以在这里找到该小程序:xxx
我希望能够在开始时指定一个临时文件夹,因为如果我有两个该小程序的实例运行时它们将与文件重叠,它们存储在同一个临时文件夹中。
我想知道是否有可能告诉小程序在指定的临时文件夹中写入。
尝试添加属性:
<property name="java.io.tmpdir" value="/tmp/user1" />
但不起作用。
有什么想法吗?
I'm accessing a java applet that is running on a website (which i can't access/modify the content) you can find the applet here : xxx
I want to be able to specify a temporary folder at start because if i have two instances of that applet running they will overlap the files, they store in the same temporary folder.
I wonder if it's every possible to tell the applet to write in a specified temporary folder.
Tried to add property :
<property name="java.io.tmpdir" value="/tmp/user1" />
But doesn't work.
Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你可以下载所有这些
jar
文件,然后通过java -jar
指定正确的类路径、主类、内存设置、临时文件夹等来运行它。请参阅原始文件jnlp
文件以获取更多详细信息。不确定它是否有效,但你可以尝试一下。
I guess you can download all those
jar
files and then just run it viajava -jar
specifying proper class path, main class, memory settings, temporary folder, etc. Consult originaljnlp
file for more details.Not sure if it will work, but you can give it a try.