用Java语言开发的网络蚂蚁,很实用哦

时间:2011-11-06 06:48:13
【文件属性】:

文件名称:用Java语言开发的网络蚂蚁,很实用哦

文件大小:49KB

文件格式:JAR

更新时间:2011-11-06 06:48:13

网络蚂蚁Java版

网络蚂蚁Java版 import java.io.*; import java.net.*; public class DownLoad{ URL url; String objFile; long nStartPos; RandomAccessFile rf; public DownLoad(String objFile,long nStartPos) throws IOException{ this.nStartPos=nStartPos; this.objFile=objFile; rf=new RandomAccessFile(objFile,"rw"); // rf.seek(nStartPos); } public synchronized int write(byte[] b,int nStart,int len){ int n=-1; try{ rf.write(b,nStart,len); n=len; }catch(IOException ioe){ ioe.printStackTrace(); } return n; } public void close()throws IOException{ rf.close(); } }


网友评论