엔지니어

[Intellij]com.google.common 패키지를 못 찾는 경우

Nj 2016. 1. 28. 15:55

출처: http://stackoverflow.com/questions/7065402/how-to-add-external-library-in-intellij-idea


1. 해당 라이브러리 다운로드

https://code.google.com/p/guava-libraries/


2. 작업중인 경로에 libs 폴더 생성 후 다운 받은 jar 파일을 둠


3. Intellij에서 컴파일을 하거나 refresh 수행 하여 좌측에 libs가 보이는지 확인


4. 다운 받았던 파일이 보이면 마우스 우클릭, Add as Library선택

   시험 이후에는 추가했던 라이브러리를 global library로 변경함.


5. 정상적으로 컴파일 및 run 확인

import java.util.*;
import com.google.common.collect.*;
import static java.lang.System.*;
static void test3Collection() {

List<Integer> numbers = Arrays.asList(1, 2, 3);

List<Integer> collector;
collector = ImmutableList.<Integer>builder()
.add(10)
.addAll(numbers)
.build();

System.out.println(collector.size()); // 4
}


반응형

'엔지니어' 카테고리의 다른 글

public static 의미  (782) 2016.01.29
모듈이 없는 경우  (1136) 2016.01.29
PERL 아파치 로그 정규식 라이브러리  (477) 2016.01.27
PERL 확장자 *.pm *.pl 차이  (1156) 2016.01.27
sh, bash 스크립트의 if문 사용할 때 추가 조건/옵션 항목  (3491) 2015.12.10