?? filesplitterfetch.java
字號(hào):
package com.download;
import java.io.*;
import java.net.*;
/**
* 負(fù)責(zé)部分文件的抓取。
* @author yeqc
* 2008-06-28
*/
public class FileSplitterFetch extends Thread {
/**
* 文件路徑
*/
String sURL; //File URL
/**
* 開(kāi)始的指針定位
*/
long nStartPos;
* 結(jié)束的指針定位
*/
long nEndPos;
/**
* 線程id
*/
int nThreadID;
/**
* 是否下載結(jié)束
*/
boolean bDownOver = false;
/**
*
*/
boolean bStop = false;
/**
* 文件訪問(wèn)接口
*/
FileAccessI fileAccessI = null;
public FileSplitterFetch(String sURL,String sName,long nStart,long nEnd,int did) throws IOException
{
this.sURL = sURL;
this.nStartPos = nStart;
this.nEndPos = nEnd;
nThreadID = did;
fileAccessI = new FileAccessI(sName,nStartPos);
}
public void run()
{
while(nStartPos < nEndPos && !bStop)
{
try{
URL url = new URL(sURL);
HttpURLConnection httpConnection =
(HttpURLConnection)url.openConnection ();
httpConnection.setRequestProperty("User-Agent","NetFox");
String sProperty = "bytes="+nStartPos+"-";
httpConnection.setRequestProperty("RANGE",sProperty);
InputStream input = httpConnection.getInputStream();
byte[] b = new byte[1024];
int nRead;
while((nRead=input.read(b,0,1024)) > 0 && nStartPos < nEndPos
&& !bStop){
nStartPos += fileAccessI.write(b,0,nRead);
}
bDownOver = true;
System.out.println("--fileAccessI.write (b,0,nRead);--- ");
fileAccessI.write (b,0,nRead);
}
catch(Exception e){
e.printStackTrace ();
}
}
}
//打印回應(yīng)的頭信息
public void logResponseHead(HttpURLConnection con)
{
for(int i=1;;i++)
{
String header=con.getHeaderFieldKey(i);
if(header!=null)
System.out.println(header+" : "+con.getHeaderField(header));
else
break;
}
}
public void splitterStop()
{
bStop = true;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -