我使用以下代码从网络上获取图片:
import java.io.FileOutputStream;
import java.io.IOException;
import org.jsoup.Jsoup;
public class fetchImageTest {
public static void main(String[] args) throws Exception {
saveImage(args[0], args[1]);
}
private static boolean saveImage(String string, String destination) throws IOException {
string = string.replaceAll(" ", "%20");
try {
byte[] image = Jsoup.connect(string).ignoreContentType(true).timeout(10000).execute().bodyAsBytes();
FileOutputStream os = new FileOutputStream(destination);
os.write(image);
os.close();
return true;
}
catch (IOException e) {
System.out.println("couldn't open " + string);
return false;
}
catch (Exception e) {
System.out.println("couldn't open - general exception" + string);
return false;
}
}
}
由于我的其他一些代码存在错误,我尝试从以下格式的网址中提取图片:
http://shop.foo.comhttp://shop.foo.com/1.jpg
我的代码最终获取了一个shopwiki图像,如
我正在使用jsoup-1.7.1.jar。我的服务器上有病毒吗?我的jsoup jar文件中是否有病毒?
我真的不知道......
答案 0 :(得分:1)
有几个网站建立了一个系统来保护其图像的恢复。
我猜你试图检索图片shopwiki.com 我看到他们的URL来检索图片是否已经确定了安全性。