Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

Eclipse Libraries 추가하기 본문

안드로이드/Eclipse

Eclipse Libraries 추가하기

설.현.아빠 2011. 2. 11. 10:04



먼저 Project에 라이브러리를 import시킨다.

즉, Project -> import -> General -> File System -> jar파일등록하면 Project에 해당 Library가 추가된다.

 

다음으로는 해당 Library를 Project에서 사용할 수 있도록 설정을 해주어야 한다.

Project선택 후

Properties(Alt + Enter) -> Java Build Path -> Libraries Tab -> Add JARs -> JAR파일 선택

 

 

혹은 import 시키지 않고 외부에서 Library를 가져올 수 도 있다.

Project선택 후

Properties(Alt + Enter) -> Java Build Path -> Libraries Tab -> Add External JARs -> JAR파일 선택

 

 

 

*. 추가 확인 사항

Jericho HTML Parser를 설치한 후에 java 소스 상에서 아래와 같이 사용할 경우.

Source source = null;

source = new Source(new URL(sourceUrlString));

Source Import시 두가지 중 import net.htmlparser.jericho.Source; 를 설정해 주어야 한다.

'안드로이드 > Eclipse' 카테고리의 다른 글

Export를 통해 Project Backup 및 Import시키기  (0) 2011.02.11
Eclipse Speed Implovement  (0) 2011.02.11
Eclipse 단축키  (0) 2011.02.11
Eclipse Font 설정  (0) 2011.02.11
Eclipse Line Number 설정  (0) 2011.02.11
Comments