X
xiruo
Unregistered / Unconfirmed
GUEST, unregistred user!
URL url=new URL("http://…………/img.jpg");
InputStream is=url.openStream();
byte[] b=new byte[urlConn.getContentLength()];
is.read(b);
OutputStream os=new FileOutputStream("download.jpg");
os.write(b);
is.close();
os.close();
我用这个方法下载图片只能得到其中的一小部分,估计就是4151字节的东西
我应该怎样才能得到整张图呢?
InputStream is=url.openStream();
byte[] b=new byte[urlConn.getContentLength()];
is.read(b);
OutputStream os=new FileOutputStream("download.jpg");
os.write(b);
is.close();
os.close();
我用这个方法下载图片只能得到其中的一小部分,估计就是4151字节的东西
我应该怎样才能得到整张图呢?
代码: