자바 웹 페이지 내용 복사

이 프로그램 은 사이트'www.baidu.com'첫 페이지 의 내용 을 파일 test.html 에 복사 하여 저장 합 니 다.

  
  
  
  
  1. /** 
  2.  *  “www.baidu.com” test.html 。 , : 
  3.  *  
  4.  * @author Administrator 
  5.  * 
  6.  */ 
  7. import java.io.BufferedReader; 
  8. import java.io.File; 
  9. import java.io.FileWriter; 
  10. import java.io.IOException; 
  11. import java.io.InputStream; 
  12. import java.io.InputStreamReader; 
  13. import java.io.PrintWriter; 
  14. import java.net.MalformedURLException; 
  15. import java.net.URL; 
  16.  
  17. public class test8 { 
  18.  
  19.     /** 
  20.      * @param args 
  21.      * @throws IOException  
  22.      */ 
  23.     public static void main(String[] args) throws IOException { 
  24.         // TODO Auto-generated method stub 
  25.         URL url=new URL("http://www.searchnu.com/406"); 
  26.         BufferedReader in=new BufferedReader(new InputStreamReader(url.openStream())); 
  27.         String inString; 
  28.         File outfile=new File("test.html"); 
  29.         PrintWriter out=new PrintWriter(new FileWriter(outfile)); 
  30.         while((inString=in.readLine())!=null
  31.         { 
  32.             out.println(inString); 
  33.         } 
  34.         in.close(); 
  35.         out.close(); 
  36.     } 
  37.  

좋은 웹페이지 즐겨찾기