簡體   English   中英

java.io.IOException:連接上的流意外結束(Android,jsoup)

[英]java.io.IOException: unexpected end of stream on Connection (Android, jsoup)

我正在解析一些歌詞站點,並且標題出現錯誤。
我給它的URL(例如):
http://www.azlyrics.com/lyrics/linkinpark/intheend.html

class GetLyrics extends AsyncTask<String, Void, String> {
    protected String doInBackground(String... urls) {
        String url = urls[0];
        String output;
        output = "If you see this, some kind of error has occupied";
        try {
            Document document = Jsoup.connect(url).post(); //I dont know how it works, its google
            document.outputSettings(new Document.OutputSettings().prettyPrint(false));//makes html() preserve linebreaks and spacing
            document.select("br").append("\\n");
            Elements lyrics = document.select("b + br + br + div"); //Search for lyrics <div> tag, that after <b> and 2 <br> tags
            String s = lyrics.html().replaceAll("\\\\n", "\n"); //Google again
            output = Jsoup.clean(s, "", Whitelist.none(), new Document.OutputSettings().prettyPrint(false));
            output = output.replace("\n\n", "\n");
            output = output.substring(4); //Remove first enters
        }
        catch (HttpStatusException e) {
            System.err.println("404 error: " + e);
            System.err.println("Check your input data");
            output = "An 404 error has occurred, more info:\n" + e + "\nCheck your input data";
            Log.d("LyricFinder", e.toString());
        }
        catch (Exception e) {
            System.err.println("Some error: " + e);
            output = "An uknown error has occurred\nCheck your internet connection";
            Log.d("LyricFinder", e.toString());
        }
        return output;
    }

    protected void onPostExecute(String lyrics) {
        lyricsOutput.setText(lyrics);
    }
}

日志是:

 D/LyricFinder: java.io.IOException: unexpected end of stream on Connection{www.azlyrics.com:80, proxy=DIRECT@ hostAddress=85.17.159.246 cipherSuite=none protocol=http/1.1} (recycle count=0)

在eclipse控制台項目中,此代碼可以完美運行(但沒有此asynctask:/)
我是新手,我先是與Internet和jsoup合作。

我可以看到的一件事是您正在使用POST請求而不是GET來檢索文檔。

只是改變

Document document = Jsoup.connect(url).post();

Document document = Jsoup.connect(url).get();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM