开发者

Android Program Error

I've written this Android program as a news feed...it works fine up until - currently - the article about focal.ie. So the first 6 stories load fine but then it doesn't load the rest and Im wrecking my head trying to figure out why. Any help would be appreciated. Here's the code. Thanks

package com.news;



import java.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class NewsActivity extends Activity {
    WebView mWebView;
    String test2 = "<html><body><table border=0 width=10 height=10>";
    Document docs;
    Document writing;

    String text(String link)
{
    String full ="<html><body><table border=0 cellpadding=2 cellspacing=2><tr><td>";;
    try {
         writing = Jsoup.connect(link).get();
    } catch (IOException e) {
        e.printStackTrace();
    }
    Element heading = writing.select("h2").first();
    Elements classname = writing.getElementsByClass("news");
    Elements items = classname.select("p");

    full = full + heading.text() + "<br>" + items.get(0).text() + "</td></tr>";
    Elements imgs2 = writing.select("img[src$=.jpg]");
    String picture = imgs2.get(1).absUrl("src");
    String newImg = "<img src=\"" + picture + "\"/ width =100 >";
    full = full + "<tr><td>" + newImg + "</td></tr>";
    full = full + "<tr><td>";

    for (int i = 1; i< items.size(); i++)
    {
        full = full + items.get(i).text();
    }

    full = full + "</td></tr></table></body></html>";
    return full;
}
public void main(String... args) 
{
    try 
    {
         docs = Jsoup.connect("http://www.dcu.ie/news/index.shtml").get();
    } 
    catch (IOException e) 
    {
        e.printStackTrace();
    }

    Elements imgs = docs.select("img[src$=.jpg]");
    Elements txt = docs.select("h2");

    Elements article = docs.getElementsByClass("date");
    Elements links = article.select("a[href]");

    for (int i = 1; i &l开发者_开发知识库t; imgs.size(); i++){
        String url = imgs.get(i).absUrl("src");
        String temp = links.get(i-1).absUrl("href");

        String temp2 = "<a href=\"" + temp + "\"/>";
        String newImg = temp2 + "<img src=\"" + url + "\"/ width =100 >";
        test2 = test2 + "<tr>";

        test2 = test2 + "<td>";
        test2 = test2 + " " + newImg + " ";
        test2 = test2 + "</td>";
        test2 = test2 + "<td>";
        test2 = test2 + " " + txt.get(i-1).text() + " " + temp2;
        test2 = test2 + "</td>";
        test2 = test2 + "</tr>";

        }
    test2 = test2 + "</table>";
    test2 = test2 + "</html></body>";

}

public void onCreate(Bundle savedInstanceState) {
    main();

    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mWebView = (WebView) findViewById(R.id.webview);
    mWebView.setWebViewClient(new NewsClient());
    mWebView.getSettings().setJavaScriptEnabled(true);
    mWebView.getSettings().setDomStorageEnabled(true);

    mWebView.loadData(test2, "text/html", "utf-8");

}


@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    if ((keyCode == KeyEvent.KEYCODE_BACK) && mWebView.canGoBack()) {
        mWebView.goBack();
        return true;
    }
    return super.onKeyDown(keyCode, event);
}

private class NewsClient extends WebViewClient {
    public boolean shouldOverrideUrlLoading(WebView view, String url) {

        String newUrl = text(url);
        view.loadData(newUrl, "text/html", "utf-8");
        return true;
    }
}
}


My guess is that the missing closing anchor tags are causing problems. I'm guessing the HTML parser doesn't like empty anchor tags:

String temp2 = "<a href=\"" + temp + "\"/>";
String newImg = temp2 + "<img src=\"" + url + "\"/ width =100 >";
test2 = test2 + "<tr>";

should be:

String temp2 = "<a href=\"" + temp + "\" >";
String newImg = temp2 + "<img src=\"" + url + "\"/ width =100 >" + "</a>";
test2 = test2 + "<tr>";

and:

test2 = test2 + " " + txt.get(i-1).text() + " " + temp2;

should be:

test2 = test2 + temp2+ " " + txt.get(i-1).text() + " </a>";
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜