Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 jar 文件,可以从我的服务器下载图像并创建一些本地文件。我必须将此文件传输给客户端。我想知道如何防止用户删除此 jar 创建的文件夹或任何其他文件,因为再次下载整组图像将是一个巨大的开销。用户必须只能执行 jar。
如果被删除,我必须编写一些备份代码来恢复文件。我的问题的一个相当具体的解决方案。
我认为您需要找出它是什么系统。为此使用这个
System.getProperty("os.name");
根据系统,在 JDK 7 或jna中使用 NIO 或 POSIX
例如,看看这篇文章