PRagma: no-cache 以上三个头一起用,就可以控制所有的浏览器不要缓存数据
Range bytes=6- 实现断点续传
URL url=new URL("http://localhost:8080/myday04/1.txt");URLConnection conn=url.openConnection();conn.setRequestProperty("Range", "bytes=6-");InputStream in=conn.getInputStream();byte[] buffer=new byte[1024];int len=0;FileOutputStream out=new FileOutputStream("D://1.txt",true);while((len=in.read(buffer))>0){out.write(buffer,0,len);}out.close();in.close();
新闻热点
疑难解答