我想在java中创建日志文件并将一些文本写入该文件。我完成了该任务。当运行jar文件时,此代码运行良好。但是在使用exe4j文件写入过程创建setup.exe之后无法正常工作。任何人都知道怎么做?
这就是我获取jar文件目录的路径
File f = null;
public String baseUrl() {
try {
if (f == null) {
f = new File(Register.class.getProtectionDomain().getCodeSource().getLocation().toURI().getRawPath());
}
String path = f.getParent();
return path;
} catch (URISyntaxException ex) {
System.out.println(ex);
}
return "";
}
这是我的日志文件创建过程
try {
src.Log lg = new src.Log();
lg.setAction(action);
lg.setUserName(userName);
lg.setDescription(description);
lg.setTime(date);
lg.setSyncPath(syncPath);
lg.setMethod(method);
String url = baseUrl();
System.out.println(baseUrl());
String directoryName = url + "/ResFile";
File directory = new File(directoryName);
if (!directory.exists()) {
directory.mkdir();
}
File log = new File(directoryName + "/log.txt");
if (log.exists() == false) {
log.createNewFile();
}
try (PrintWriter out = new PrintWriter(new FileWriter(log, true))) {
out.append(lg.toString());
}
} catch (Exception ex) {
System.out.println(ex);
}
答案 0 :(得分:0)
如果您使用“EXE中的JAR”模式,您的日志文件将以临时目录结束,因为这是在运行时提取JAR文件的位置。
要获取可执行文件所在的目录,可以使用
System.getProperty("install4j.exeDir")