java斷點續傳功效實例(java獲得長途文件)。本站提示廣大學習愛好者:(java斷點續傳功效實例(java獲得長途文件))文章只能為提供參考,不一定能成為您想要的結果。以下是java斷點續傳功效實例(java獲得長途文件)正文
import java.io.BufferedInputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.net . * ;
/**
* 文件傳送客戶端:獲得長途文件
*/
public class GetRemoteFile_Client_GoOn { public GetRemoteFile_Client_GoOn()
{
}
private boolean FileExist(String pathAndFile) // 肯定文件能否曾經下載,但沒有下載完成
{
File file = new File(pathAndFile);
if (file.exists())
return true ;
else
return false ;
}
private long FileSize(String pathAndFile) // 肯定曾經下載了的文件年夜小
{
File file = new File(pathAndFile);
return file.length();
}
private void FileRename(String fName,String nName) // 將下載完整的文件改名,去失落.tp名
{
File file = new File(fName);
file.renameTo( new File(nName));
file.delete();
}
public static void main(String[] args)
{
URL url = null ;
HttpURLConnection urlc = null ;
DataOutputStream dos = null ;
BufferedInputStream bis = null ;
FileOutputStream fos = null ;
String localFile = " d:////x.x " ; // 文件保留的處所及文件名,詳細情形可以改
String localFile_bak = localFile + " .tp " ; // 未下載完文件加.tp擴大名,以便於差別
GetRemoteFile_Client_GoOn gco = new GetRemoteFile_Client_GoOn();
long fileSize = 0 ;
long start = System.currentTimeMillis();
int len = 0 ;
byte [] bt = new byte [ 1024 ];
// byte[] buffer=new byte[50*1024];
RandomAccessFile raFile = null ;
long TotalSize = 0 ; // 要下載的文件總年夜小
try
{
url = new URL( " http://www.netbox.cn/download/nbsetup.EXE " );
urlc = (HttpURLConnection) url.openConnection();
TotalSize = Long.parseLong(urlc.getHeaderField( " Content-Length " ));
System.out.println( " 下載文件年夜小為: " + TotalSize);
urlc.disconnect(); // 先斷開,上面再銜接,不然上面會報曾經銜接的毛病
urlc = (HttpURLConnection) url.openConnection();
// 肯定文件能否存在
if (gco.FileExist(localFile_bak)) // 采取斷點續傳,這裡的根據是看下載文件能否在當地有.tp有擴大名同名文件
{
System.out.println( " 文件續傳中… " );
fileSize = gco.FileSize(localFile_bak); // 獲得文件在小,以便肯定隨機寫入的地位
System.out.println( " fileSize: " + fileSize);
// 設置User-Agent
// urlc.setRequestProperty("User-Agent","NetFox");
// 設置斷點續傳的開端地位
urlc.setRequestProperty( " RANGE " , " bytes= " + fileSize + " - " );
// urlc.setRequestProperty("RANGE", "bytes="+fileSize); // 如許寫不可,不克不及少了這個"-".
// 設置接收信息
urlc.setRequestProperty( " Accept " , " image/gif,image/x-xbitmap,application/msword,*/* " );
raFile = new RandomAccessFile(localFile_bak, " rw " ); // 隨機方位讀取
raFile.seek(fileSize); // 定位指針到fileSize地位
bis = new BufferedInputStream(urlc.getInputStream());
while ((len = bis.read(bt)) > 0 ) // 輪回獲得文件
{
raFile.write(bt, 0 , len);
// buffer=buffer+bt;
// System.
}
System.out.println( " 文件續傳吸收終了! " );
}
else // 采取原始下載
{
fos = new FileOutputStream(localFile_bak); // 沒有下載終了就將文件的擴大名定名.bak
dos = new DataOutputStream(fos);
bis = new BufferedInputStream(urlc.getInputStream());
System.out.println( " 正在吸收文件… " );
int test = 0 ;
while ((len = bis.read(bt)) > 0 ) // 輪回獲得文件
{
dos.write(bt, 0 , len);
test ++ ;
if (test == 50 ) // 這裡是測試,你可以刪除這裡,便可以正常下載了
break ;
}
// System.out.println("文件正常吸收終了!");
}
System.out.println( " 共用時: " +
(System.currentTimeMillis() - start) / 1000 );
if (bis != null )
bis.close();
if (dos != null )
dos.close();
if (fos != null )
fos.close();
if (raFile != null )
raFile.close();
System.out.println( " localFile_bak: " + gco.FileSize(localFile_bak));
if (gco.FileSize(localFile_bak) == TotalSize) // 下載終了後,將文件重定名
{
gco.FileRename(localFile_bak,localFile);
}
System.exit( 0 );
}
catch (Exception e)
{
try
{
if (bis != null )
bis.close();
if (dos != null )
dos.close();
if (fos != null )
fos.close();
if (raFile != null )
raFile.close();
}
catch (IOException f)
{
f.printStackTrace();
}
e.printStackTrace();
}
System.exit( 0 );
}
}