在Java中,可以通過獲取當前工作目錄(Current Working Directory)的方式來獲取項目名。以下是一個簡單的示例:
import java.nio.file.Paths;
public class GetProjectName {
public static void main(String[] args) {
try {
// 獲取當前工作目錄
String currentDir = System.getProperty("user.dir");
// 獲取項目名
String projectName = Paths.get(currentDir).getFileName().toString();
// 輸出項目名
System.out.println("項目名: " + projectName);
} catch (Exception e) {
e.printStackTrace();
}
}
}
這段代碼首先獲取當前工作目錄,然后使用Paths.get()
方法將其轉換為Path
對象。接著,通過調用getFileName()
方法獲取項目名。最后,將項目名輸出到控制臺。