您的位置:首页 > 其它

Connect getContentLength = -1问题的解决方法

2007-04-06 15:46 531 查看
[align=right][/align]
Connector getContentLength = -1问题的解决方法

以下代码是读取通过http读取url内容

hc = (HttpConnection)Connector.open(url);
in = hc.openInputStream();

int contentLength = (int)hc.getLength();
byte[] raw = new byte[contentLength];
int length = in.read(raw);

in.close();
hc.close();

但当url的内容很少的时候,contentLength 总是返回-1 导致程序出错。

解决的办法是改进读取的方式

hc = (HttpConnection)Connector.open(url);
InputStream in = hc.openInputStream();
System.out.println("hc.getLength()="+hc.getLength()); ;
ByteArrayOutputStream swapStream = new ByteArrayOutputStream();
byte[] buff = new byte[512];
int rc = 0;
while ( (rc = in.read(buff, 0, 512)) > 0) {
swapStream.write(buff, 0, rc);
}
byte[] b = swapStream.toByteArray();
in.close();
hc.close();

这样就可以正确读出内容了。

http://www.ooohooo.com/viewthread.php?tid=64&extra=page%3D1
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: