我正在教自己网站爬行。我认为有两种方法可以从网站获取HTML代码,一种使用InputStreamReader,另一种使用jsoup。我试过这两个,但看起来这两个结果不同。
import java.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
import java.net.*;
import java.io.*;
public class crawling {
public static void main(String args[]) {
try {
BufferedReader buf;
String line;
URL url = new URL("http://www.example.com");
buf = new BufferedReader(new InputStreamReader(url.openStream()));
while(buf.readLine() != null) {
line = buf.readLine();
System.out.println(line);
if(line.contains("background-color:")) {
line = line.replace("background-color:", " ");
System.out.println("I GOT IT: "+ line);
}
}
buf.close();
System.out.println("\n\nEnd of Streaming\nUse Jsoup\n\n");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Document doc;
try {
doc = Jsoup.connect("http://www.example.com").get();
System.out.println(doc);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
如果我运行上面的代码,控制台会显示:
<html>
<title>Example Domain</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
body {
margin: 0;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
width: 600px;
padding: 50px;
border-radius: 1em;
a:link, a:visited {
text-decoration: none;
@media (max-width: 700px) {
background-color: #fff;
I GOT IT: #fff;
div {
margin: 0 auto;
padding: 1em;
}
</head>
<body>
<h1>Example Domain</h1>
domain in examples without prior coordination or asking for permission.</p>
</div>
</html>
End of Streaming
Use Jsoup
<!doctype html>
<html>
<head>
<title>Example Domain</title>
<meta charset="utf-8">
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body {
background-color: #f0f0f2;
margin: 0;
padding: 0;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 5em auto;
padding: 50px;
background-color: #fff;
border-radius: 1em;
}
a:link, a:visited {
color: #38488f;
text-decoration: none;
}
@media (max-width: 700px) {
body {
background-color: #fff;
}
div {
width: auto;
margin: 0 auto;
border-radius: 0;
padding: 1em;
}
}
</style>
</head>
<body>
<div>
<h1>Example Domain</h1>
<p>This domain is established to be used for illustrative examples in documents. You may use this domain in examples without prior coordination or asking for permission.</p>
<p><a href="http://www.iana.org/domains/example">More information...</a></p>
</div>
</body>
</html>
据此,使用InputStreamReader时似乎缺少一些信息...为什么会出现这种错误?
对我来说,使用StreamReader而不是jsoup似乎要容易得多。但由于它似乎缺少一些信息,我觉得我别无选择,只能使用jsoup。
所以我想知道:
1.为什么使用输入流缺少一些信息,以及如何解决它
2.如果建议使用jsoup,我怎样才能使用输入流做同样的事情,得到一个特定的字符串。我用谷歌搜索了它,但是在连接网址后我在理解该怎么做时遇到了问题。
非常感谢你。
答案 0 :(得分:0)
您通过在循环中调用buf.readLine()
两次来跳过备用行。
替换它:
while(buf.readLine() != null) {
line = buf.readLine();
[...]
有了这个:
while((line = buf.readLine()) != null) {
[...]
对于#2,JSoup并不是真正做到这一点的方式,还有很多其他需要处理的案例。但是,如果你仍然想要这样做,那就是这种hacky方式:
Elements elems = doc.getElementsByTag("style"); //Select "style" element
for (Element elem : elems) {
Node child = elem.childNode(0);
String styleText = child.attr("data").replaceAll("background-color:\\s*#[a-f0-9]+;", ""); //Remove background color attribute
child.attr("data", styleText); //Set the updated style back into the element
}
System.out.println(doc);