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.
我在 Java 9 上编写了 HelloWorld 应用程序,使用 Inno Setup 构建jlink并安装了他。我用%path-to-app%/bin/launcher.bat.
jlink
%path-to-app%/bin/launcher.bat
我可以%path-to-app%从 Java 获取并在控制台中显示它吗?我认为这个问题可以通过获取 JRE 路径来解决。
%path-to-app%
System.getProperty("java.home");将为您提供通往 JRE 的路径。 System.getProperty(""user.dir");会给你当前的工作目录。
System.getProperty("java.home");
System.getProperty(""user.dir");