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 应用程序在 C:\Program Files\example1.exe 上运行,我需要将它作为“C:\Program Files\example1.exe”来获取。还是它在 C:\Windows\example2.exe 工作,我需要将它作为 "C:\Windows\example2.exe" 。我该怎么做?
您可以使用它System.getProperty("user.dir")来查找您的工作目录在哪里。
System.getProperty("user.dir")