html 안에 텍스트 받아오기
import java.net.URL;
import net.htmlparser.jericho.Source;
public class htmltotext {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Source source = null;
String text= null;
try {
source=new Source(new URL("http://google.com"));
source.fullSequentialParse();
//source.toString();
text=source.getTextExtractor().toString();
System.out.println(text);
} catch (Exception e) {
e.printStackTrace();
}
}
}
출력 결과
---------------------------------------------------------------------------------------------------------
Google 검색 이미지 동영상 지도 뉴스 번역 도서 Gmail 더보기 ? iGoogle | 웹 기록 | 설정 | 로그인 한국 고급검색언어도구 광고 프로그램Google 정보Google.com in English ? 2012 - 개인정보 보호 및 약관
'프로그래밍 > Android' 카테고리의 다른 글
안드로이드 avd 경로 변경 (0) | 2012.09.20 |
---|---|
your project contains error(s) please fix them before running your application (0) | 2012.04.10 |
외부라이브러리 사용 (0) | 2012.03.28 |