我如何阅读 Java 中网页的图标?
How do i read the favicon of an webpage in Java?
我想找到一种方法来读取网页的图标并将其传递给我程序中的图像。到目前为止,我已经创建了这些读取网页的方法,找到 favicon 行(或第一个 .ico 文件),然后隔离 url。最后我从 url.
中读取了图像
public static Image getFavIcon(String path) {
try {
URL url = new URL(path);
BufferedReader input = new BufferedReader(new InputStreamReader(url.openStream()));
String temp;
while ((temp = input.readLine()) != null) {
if (temp.toLowerCase().contains(("favicon").toLowerCase())) {
break;
}
if (temp.toLowerCase().contains((".ico").toLowerCase())) {
break;
}
}
return getFavIcon(getURL(temp));
} catch (IOException e) {
return null;
}
}
public static URL getURL(String input) throws MalformedURLException {
for (int index = 0; index < input.length(); index++) {
try {
if (input.substring(index, index + 4).equals("href")) {
String temp = getString(input.substring(index));
if (temp != null) {
return new URL(temp);
}
}
} catch (StringIndexOutOfBoundsException e) {
}
}
return null;
}
public static String getString(String input) throws StringIndexOutOfBoundsException {
int first = -1;
int second = -1;
int index = 0;
while ((first == -1) || (second == -1)) {
if (input.charAt(index) == 34) {
if (first == -1) {
first = index;
} else {
second = index;
}
}
index++;
}
String temp = input.substring(first + 1, second);
int length = temp.length();
if (temp.substring(length - 4).equals(".ico")) {
return temp;
}
return null;
}
public static Image getFavIcon(URL url) {
return java.awt.Toolkit.getDefaultToolkit().createImage(url);
}
问题是 getFavicon 返回的图像虽然不为空,但要么是空的、不可见的,要么不是不透明的。当我尝试打印它时 g.drawImage() 或 g2.drawImage() 它是空的但它不会抛出空指针异常
我尝试了描述的库 here
但我不确定如何从 url 读取图标。
那么有人知道如何从 url 中读取图标或更简单的方法来获取图像的图标吗?
您可以使用 JsonP 库获取网站图标。
比方说,favicon 的定义方式如下:
<head>
<link rel="icon" href="http://example.com/image.ico" />
</head>
您可以使用以下代码:
Element element = doc.head().select("link[href~=.*\.(ico|png)]").first();
System.out.println(element.attr("href"));
这里是 example.
我想找到一种方法来读取网页的图标并将其传递给我程序中的图像。到目前为止,我已经创建了这些读取网页的方法,找到 favicon 行(或第一个 .ico 文件),然后隔离 url。最后我从 url.
中读取了图像public static Image getFavIcon(String path) {
try {
URL url = new URL(path);
BufferedReader input = new BufferedReader(new InputStreamReader(url.openStream()));
String temp;
while ((temp = input.readLine()) != null) {
if (temp.toLowerCase().contains(("favicon").toLowerCase())) {
break;
}
if (temp.toLowerCase().contains((".ico").toLowerCase())) {
break;
}
}
return getFavIcon(getURL(temp));
} catch (IOException e) {
return null;
}
}
public static URL getURL(String input) throws MalformedURLException {
for (int index = 0; index < input.length(); index++) {
try {
if (input.substring(index, index + 4).equals("href")) {
String temp = getString(input.substring(index));
if (temp != null) {
return new URL(temp);
}
}
} catch (StringIndexOutOfBoundsException e) {
}
}
return null;
}
public static String getString(String input) throws StringIndexOutOfBoundsException {
int first = -1;
int second = -1;
int index = 0;
while ((first == -1) || (second == -1)) {
if (input.charAt(index) == 34) {
if (first == -1) {
first = index;
} else {
second = index;
}
}
index++;
}
String temp = input.substring(first + 1, second);
int length = temp.length();
if (temp.substring(length - 4).equals(".ico")) {
return temp;
}
return null;
}
public static Image getFavIcon(URL url) {
return java.awt.Toolkit.getDefaultToolkit().createImage(url);
}
问题是 getFavicon 返回的图像虽然不为空,但要么是空的、不可见的,要么不是不透明的。当我尝试打印它时 g.drawImage() 或 g2.drawImage() 它是空的但它不会抛出空指针异常
我尝试了描述的库 here 但我不确定如何从 url 读取图标。 那么有人知道如何从 url 中读取图标或更简单的方法来获取图像的图标吗?
您可以使用 JsonP 库获取网站图标。
比方说,favicon 的定义方式如下:
<head>
<link rel="icon" href="http://example.com/image.ico" />
</head>
您可以使用以下代码:
Element element = doc.head().select("link[href~=.*\.(ico|png)]").first();
System.out.println(element.attr("href"));
这里是 example.