public static void main(String[] args) {
String url = "http地址";
byte[] btImg = getImageFromNetByUrl(url);
if (null != btImg && btImg.length > 0) {
String fileName = "文件名";
System.out.println("读取到:" + btImg.length + " 字节");
writeImageToDisk(btImg, "要写入的地址" + fileName);
} else {
System