[求助]怎么用java下载asp或gif文件?
http://www.exiaoshuo.com/ShowImg.asp?p=/2005-12/5975774081762.gif如上面这样的URL,怎么下载得到这个gif文件
还有asp文件
http://www.exiaoshuo.com/wyjj/17153/1014836.asp
我想把asp下载下来分析,asp文件里面有gif链接
最终我得到的是gif文件
???
请大家帮个忙
谢谢
import java.net.*;
import java.io.*;public class DownloadGif{
public static void main(String[] args)throws IOException{
URL url =new URL(\"http://www.exiaoshuo.com/ShowImg.asp?p=/2005-12/5975774081762.gif\");
InputStream is =url.openStream();
OutputStream os =new FileOutputStream(\"save.gif\");
byte[] buffer =new byte[512];
int len;
while((len =is.read(buffer))!=-1) os.write(buffer,0,len);
is.close();
os.close();
}
}