0

嗨,我需要关于我尝试过的教程的帮助(http://xjaphx.wordpress.com/2012/02/04/android-xml-adventure-parsing-html-using-jsoup/)。这是关于 jsoup 但我无法让它工作我只会得到很多错误和东西。这是我的代码:

package com.sigustgebran.appsl;

import android.os.Bundle;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;

import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;

public class MainAct extends Activity {

//blog url
static final String BLOG_URL = "http://xjaphx.wordpress.com/"; 

@Override
protected void onCreate(Bundle savedInstanceState) {
    //set layout view
    super.onCreate(savedInstanceState);
    setContentView(R.layout.act_main);

    //process
    try {
        ((TextView)findViewById(R.id.tvDisplay)).setText(getBlogStats());
    } catch (Exception ex) {
        ((TextView)findViewById(R.id.tvDisplay)).setText("Error");
    }

}

protected String getBlogStats() throws Exception {
    String result = "";
    //get html document structure
    Document document = Jsoup.connect(BLOG_URL).get();
    //select path
    Elements nodeBlogStats = document.select("div#blog-stats ul li");
    //check results
    if(nodeBlogStats.size() > 0) {
        //get value
        result = nodeBlogStats.get(0).text();
    }

    //return
    return result;
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
     >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="30sp"
    android:layout_gravity="center"
    android:id="@+id/tvDisplay"
     />

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sigustgebran.appsl"
    android:versionCode="1"
    android:versionName="1.0" >
<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.sigustgebran.appsl.MainAct"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>



</manifest>

如果有人可以帮助我,我会非常高兴。谢谢

4

2 回答 2

2

我现在开始工作了。正如他在教程中所说,我已经在“外部 jars”中添加了 jsoup 库,但是当我删除它并将其复制到“libs”映射中时,它就起作用了。

于 2013-05-29T13:57:41.873 回答
0

你必须实现 AsyncTask。我想这会对你有所帮助

于 2015-02-06T16:39:21.413 回答