1

我想创建日志文件并在 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);
    }
4

1 回答 1

0

如果您使用“JAR in EXE”模式,您的日志文件将最终位于一个临时目录中,因为这是运行时提取 JAR 文件的位置。

要获取可执行文件所在的目录,可以使用

System.getProperty("install4j.exeDir")
于 2017-08-04T11:37:11.153 回答