我有这个类来检查它使用Jsoup时是否有任何可用的更新,所有的东西都在使用debug,但是当我上传release版本时,它会崩溃,我真的不知道问题出在哪里。有人能帮我吗?
致命异常:在android.os.AsyncTask$3.done(AsyncTask.java:365) at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:383) at java.util.concurrent.FutureTask.setException(FutureTask.java:252) at java.util.conc
我目前使用JSoup作为外部jar,下面的代码片段在模拟器中抛出运行时异常,最终应用程序崩溃:
Document doc = Jsoup.connect(“http://www.cnn.com”).get();
06-18 14:00:17.272: I/dalvikvm(424): Could not find method org.jsoup.Jsoup.connect, referenced from method com.pamir.ODeskActivity.getList
06-18 14:00:17.272: W/dalvikvm(424): VFY: unable to res
我试着用JSOUP测试我的服务,但是我使用的是CORS,我只需要为测试服务器发送源文件,但是当我发送这个时,我不会在服务器端接收到,总是收到null。
Connection con = Jsoup.connect("http://localhost:8080/myservice");
con.userAgent("Mozilla");
/* the origin is replaced to null automatically*/
con.header("Origin", origin);
con.ignoreHttpErrors(tr
我试图从一个使用Java和jsoup的网站上删除数据。我的程序的主要目的是从表中读取数据。不幸的是,代码适用于像这样的简单示例表。但对代码中的其他人来说却不是。
import org.jsoup.*;
import org.jsoup.helper.*;
import org.jsoup.nodes.*;
import org.jsoup.select.*;
import java.io.*; // Only needed if scraping a local File.
import java.util.*;
public class Test1 {
public
我试着用Jsoup提取img。对于没有文件名中任何空格的图像,它可以很好地工作,但是如果有空白,它只提取第一部分。
我试过了。
String result = Jsoup.clean(content,"https://rally1.rallydev.com/", Whitelist.relaxed().preserveRelativeLinks(true), new Document.OutputSettings().prettyPrint(false));
Document doc = Jsoup.parse(result);
Elements
我有下面的html,使用Jsoup,我试图提取没有任何属性的p部分中的文本(文本"Some 2“,而不是"Some 1")。
<div id="intro">
<h1 class="some class">
<p id="some_id">
Some text 1
</p>
<p>
Some text 2
</p>
</div>
我试着使用以下Jsoup表达式:
di