1-1) 설치 파일 다운(2023/12/10 일 기준 최신 파일)
https://commons.apache.org/proper/commons-lang/download_lang.cgi
- Binaries (jar 파일)
압축해제폴더\commons-lang3-3.14.0-bin\commons-lang3-3.14.0\commons-lang3-3.14.0.jar
- Source(원천 자바 파일)
1-2) 설치 파일 다운(과거버전)
https://dlcdn.apache.org//commons/lang/source/
1-3) maven 사용하는 경우 버전 확인 및 의존성 추가
https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
-하단 목록에서 버전별 선택 클릭하면

- 클릭하면 상세 페이지에서 <dependency> 확인 가능.

-내용
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
</dependency>
2) 사용 소스에서 정의.
import org.apache.commons.lang3.SystemUtils;
3) apache SystemUtils 사용 가이드 참고하여 사용.
https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/SystemUtils.html
'자바' 카테고리의 다른 글
apache commons CalendarUtils 설치 및 가이드 (0) | 2023.12.26 |
---|---|
apache commons ThreadUtils 설치 및 가이드 (0) | 2023.12.26 |
apache commons Validate 설치 및 가이드 (0) | 2023.12.26 |
apache commons AnnotationUtils 설치 및 가이드 (0) | 2023.12.26 |
apache commons NumberUtils 설치 및 가이드 (0) | 2023.12.26 |