HTTP错误集合

1.  问题描述,这个错误是我在做断点续传时,通过HttpConnection.setRequestProperty("Range","bytes="+startIndex+"-"+endIndex);时,startIndex,和endIndex

赋了相同的值。Range请求消息头,可以向服务器请求部分资源,而不是读取整个资源,对应的在客户端要用code==206来判断,(206部分资源)

1.Java.io.IOException: Server returned HTTP response code: 416 for URL: http://localhost:8080/report/b.rar

at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1243)

at webt.mtd.FileSplitterFetch.run(FileSplitterFetch.java:47)


HTTP response code: 416是由于读取文件时设置的Range有误造成的,具体的说就是下面这行代码有误:


httpConnection.setRequestProperty("RANGE", "bytes=1024-");


这个RANGE显然不能超出文件的size

你可能感兴趣的:(HTTP相关)