如何用程式下載網上檔案
我想從下列網站下載1.RM至385.RM共385個RM檔案,因用手工下載太麻煩,我想寫個程式自動迴圈下載。
http://202.100.72.44/news/yingyutl/lookahead/1.rm
...
http://202.100.72.44/news/yingyutl/lookahead/385.rm
我寫了下載一個檔案的程式試試,執行java getfile>10.rm 結果下載的不是所要的東西。
import java.net.*;
import java.io.*;
public class getfile{
public static void main (String [] args)
{
try{
URL Aurl=new URL("http://202.100.72.44/news/yingyutl/lookahead/10.rm");
String str;
URLConnection tc =Aurl.openConnection();
InputStreamReader ins=new InputStreamReader(tc.getInputStream());
BufferedReader in=new BufferedReader(ins);
while((str=in.readLine())!=null) {
System.out.println(str);
}
in.close();
}
catch(MalformedURLException e){ System.out.println("建立URL()物件失敗");}
catch (IOException e){System.out.println("openConnection()失敗");}
}
}
請高手幫忙指點,該如何寫?謝謝!!!
http://202.100.72.44/news/yingyutl/lookahead/1.rm
...
http://202.100.72.44/news/yingyutl/lookahead/385.rm
我寫了下載一個檔案的程式試試,執行java getfile>10.rm 結果下載的不是所要的東西。
import java.net.*;
import java.io.*;
public class getfile{
public static void main (String [] args)
{
try{
URL Aurl=new URL("http://202.100.72.44/news/yingyutl/lookahead/10.rm");
String str;
URLConnection tc =Aurl.openConnection();
InputStreamReader ins=new InputStreamReader(tc.getInputStream());
BufferedReader in=new BufferedReader(ins);
while((str=in.readLine())!=null) {
System.out.println(str);
}
in.close();
}
catch(MalformedURLException e){ System.out.println("建立URL()物件失敗");}
catch (IOException e){System.out.println("openConnection()失敗");}
}
}
請高手幫忙指點,該如何寫?謝謝!!!
相關文章
- 檔案上傳下載
- 檔案上傳/下載後臺程式碼
- 檔案上傳與下載
- JAVA檔案上傳下載Java
- Vertx 檔案上傳下載
- centos上傳下載檔案CentOS
- java上傳檔案跟批量下載檔案Java
- 檔案程式設計、檔案下載程式設計
- SpringMVC檔案上傳下載(單檔案、多檔案)SpringMVC
- 檔案的上傳與下載
- 檔案上傳和下載功能
- 使用SecureCRT上傳下載檔案Securecrt
- iOS開發網路篇之檔案下載、大檔案下載、斷點下載iOS斷點
- minio檔案上傳與下載
- springboot 檔案上傳下載Spring Boot
- 檔案上傳下載小工具
- java 上傳 下載檔案工具類Java
- 檔案下載上傳小工具
- spring webflux檔案上傳下載SpringWebUX
- iterm2上傳下載檔案
- 從ftp上傳下載檔案(二)FTP
- 從ftp上傳下載檔案(一)FTP
- Netty接收HTTP檔案上傳及檔案下載NettyHTTP
- 精講RestTemplate第6篇-檔案上傳下載與大檔案流式下載REST
- Android okHttp網路請求之檔案上傳下載AndroidHTTP
- Jsp+Servlet實現檔案上傳下載(一)--檔案上傳JSServlet
- spring cloud feign 檔案上傳和檔案下載SpringCloud
- Spring Boot 檔案上傳與下載Spring Boot
- 下載GitHub上檔案的兩種方法Github
- xshell 使用 sftp上傳下載檔案FTP
- Struts2的檔案上傳下載
- Feign實現檔案上傳下載
- Koa2 之檔案上傳下載
- 【liunx命令】上傳下載檔案的方法
- (iPhone/iPad)檔案上傳與下載iPhoneiPad
- struts2上傳多個檔案,下載 配製!程式碼
- 檔案下載
- Ubuntu IOS檔案映象下載網站UbuntuiOS網站