如果第一个失败,我可以在jsoup中添加备用URL吗?

时间:2016-01-10 04:48:08

标签: android url jsoup

我在Android应用程序中使用Jsoup。如果第一个URL被破坏,是否有任何方法可以尝试其他URL?

var row = $('<tr />');

var btn = $('<input />', {
    type     : 'button',
    'class'  : 'removerow',
    id       : 'removerow' + rowIndex,
    name     : 'removerow' + rowIndex,
    value    : 'Remove',
    on       : {
        click : function() {
            $(this).closest('tr').remove();
        }
    }
});

row.append(btn);

$("#applicanttable > tbody > tr:last").after(row);      

此处网址指向存储在我的Dropbox文件夹中的文件。如果第一个失败,我希望程序检查备用URL。有什么方法吗?

1 个答案:

答案 0 :(得分:0)

Jsoup没有提供此功能 也许你可以尝试这个来解决问题:

Document doc = Jsoup.connect(url).timeout(5000).get();
if(null == doc){
    doc = Jsoup.connect(anotherUrl).timeout(5000).get();
}