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 复制到 java temp dir 定义,如下所示:
String strDirectoy = System.getProperty("java.io.tmpdir") + path;
当我从 Eclipse 启动它时效果很好,但是当我尝试从导出的 autoexec jar 启动它时,它不起作用!
我错过了什么吗?
好的,我知道我做错了什么: - 首先:eclipse 不会导出我自己的文件(我想复制的文件)所以我必须在 eclipse 导出后手动将它们复制到 jar 中。