자바 현재 경로 획득【Z】
System.out.println(System.getProperty("user.dir"));//user.dir
2.File 에서 제공 하 는 함수 로 현재 경 로 를 가 져 옵 니 다.
File directory = new File("");//
try{
System.out.println(directory.getCanonicalPath());//
System.out.println(directory.getAbsolutePath());//
}catch(Exceptin e){}
File.getCanonicalPath()와 File.getAbsolutePath()는 대략 new File(".")과 new File("...")두 가지 경로 에 만 차이 가 있 습 니 다.\#getCanonicalPath()함수 에 대해"...........................................................................현재 경 로 는 C:\test:
File directory = new File("abc");
directory.getCanonicalPath(); // C:\test\abc
directory.getAbsolutePath(); // C:\test\abc
direcotry.getPath(); // abc
File directory = new File(".");
directory.getCanonicalPath(); // C:\test
directory.getAbsolutePath(); // C:\test\.
direcotry.getPath(); // .
File directory = new File("..");
directory.getCanonicalPath(); // C:\
directory.getAbsolutePath(); // C:\test\..
direcotry.getPath(); // ..
또한:System.getProperty()의 문자열 인 자 는 다음 과 같 습 니 다.
자바 코드
System.getProperty()매개 변수 전체
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.