설.현.아빠
[HTML Parsing] 해당 페이지의 모든 문자 출력 본문
흠....한글은 출력시 깨져버리는군...이건 다음에 해결!!! 앞으로 해결 해야 할것들.. 1. 한글 출력시 깨지는 문제 2. Text를 가져와서 Cutting하는 방법 3. 그림이나 음악 등 각종 Data가져오는방법 <?xml version="1.0" encoding="utf-8"?> <!-- main.xml --> <?xml version="1.0" encoding="utf-8"?> <!-- AndroidManifest.xml --> </application> // GetHTMLtoTEXT.java package lee.android.GetHTMLtoTEXT; import java.net.URL; import net.htmlparser.jericho.Source; public class GetHTMLtoTEXT extends Activity {
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbarSize="2040dip">
<!--
Scroll 설정
-->
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id = "@+id/mainTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
</ScrollView>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="lee.android.GetHTMLtoTEXT"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".GetHTMLtoTEXT"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String yourUrl = "http://code.google.com/intl/ko/android/";
TextView tv = (TextView)findViewById(R.id.mainTextView);
tv.setText(getHtmltoText(yourUrl));
}
public String getHtmltoText(String sourceUrlString) {
Source source = null;
String content = null;
try {
//HTML을 읽을 URL
source = new Source(new URL(sourceUrlString));
//처음부터 끝까지 순차적으로 구문 분석.
source.fullSequentialParse();
//HTML MarkUp에서 Text Contents만 가져와서 String으로 변환.
content = source.getTextExtractor().toString();
} catch (Exception e) {
e.printStackTrace();
}
return content;
}
}
'안드로이드 > Parser' 카테고리의 다른 글
Data Feed / RSS 예제 (0) | 2011.02.11 |
---|---|
[학습자료] 안드로이드에서 JSON 처리 방법 (3) | 2011.02.11 |
Jericho API (0) | 2011.02.11 |
[RssReader] XMLPullParser 이용하기. (7) | 2011.02.11 |
Jericho HTML Parser (0) | 2011.02.11 |