我抓取了电影列表并将其存储在我的数据库中。对于仅包含英文字符的电影,一切正常,但问题是某些包含非英文字符的电影名称无法正确显示。例如,意大利电影“Ilpiùbrandeledei giorni”被存储为“Il pi& ugrave; crudele dei giorni”。
如果有任何解决方案,有人可以告诉我吗? (我知道我可以设置抓取器的语言,我已经用意大利语抓取了电影片段,但是当我想抓取英文片头时,Imdb中仍有一些电影有非英文字符)
编辑:这是我的代码:
String baseUrl = "http://www.imdb.com/search/title?at=0&count=250&sort=num_votes,desc&start="+start+"&title_type=feature&view=simple";
label1: try {
org.jsoup.Connection con = Jsoup.connect(baseUrl).userAgent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.21 (KHTML, like Gecko) Chrome/19.0.1042.0 Safari/535.21").header("Accept-Language", "en");
con.timeout(30000).ignoreHttpErrors(true).followRedirects(true);
Response resp = con.execute();
Document doc = null;
if (resp.statusCode() == 200) {
doc = con.get();
Elements myElements = doc.getElementsByClass("results").first().getElementsByTag("table");
Elements trs = myElements.select(":not(thead) tr");
for (int i = 0; i < trs.size(); i++) {
Element tr = trs.get(i);
Elements tds = tr.select("td");
for (int j = 3; j < tds.size(); j++) {
Elements links = tds.select("a[href]");
String titleId = links.attr("href");
String movietitle = links.html();
//I ADDED YOUR CODE HERE
Charset c = Charset.forName("UTF-16BE");
ByteBuffer b = c.encode(movietitle);
for (int m = 0; b.hasRemaining(); m++) {
int charValue = (b.get()) & 0xff;
System.out.print((char) charValue);
}
// try{
// String query = "INSERT into test (movieName,ImdbId)" + "VALUES (?,?)";
// PreparedStatement preparedStmt = conn.prepareStatement(query);
// preparedStmt.setString (1, movietitle);
// preparedStmt.setString (2, titleId );
// }catch (Exception e)
// {
// e.printStackTrace();
// }
谢谢,
答案 0 :(得分:1)
在这里,我复制粘贴问题中共享的字符串并尝试
public class Test {
public static void main (String...a) throws Exception {
String s = "Il più crudele dei giorni";
Charset c = Charset.forName("UTF-16BE");
ByteBuffer b = c.encode(s);
for (int i = 0; b.hasRemaining(); i++) {
int charValue = (b.get()) & 0xff;
System.out.print((char) charValue);
}
}
}
这将打印出控制台上的s
。我假设您已经有一部分代码写入文件。如果它适合您,您可以尝试集成上述代码。