Java 程式設計 -- 網路

Java 程式

簡介

運算式

分枝

迴圈

陣列

函數

遞迴

錯誤處理

物件導向

封裝

繼承

多型

技巧

函式庫

字串

數學

正規表達式

容器

檔案

網路

資料庫

視窗

Thread

Listener

錯誤陷阱

相關檔案

相關資源

教學錄影

Eclipse

考題解答

訊息

相關網站

參考文獻

最新修改

簡體版

English

範例一:下載一個網頁

import java.util.Properties;
import java.io.*;
import java.net.*;
 
public class Net1 {
  public static void main(String[] args) throws Exception {
    // setProxy("proxy.internal", "3128");  // 若你在金門大學裡面執行本程式,請加上本行 !
    String html = download("http://tw.yahoo.com/");
    System.out.println(html);
  }
 
  public static String download(String pUrl) throws Exception {
    StringBuffer rzText = new StringBuffer();
    URL url = new URL(pUrl);
    InputStream in = url.openStream();
    try {
      byte[] buffer = new byte[1024];
      while (true) {
        int len = in.read(buffer);
        rzText.append(new String(buffer, 0, len));
      }
    } catch (Exception e) {}
    in.close();
    return rzText.toString();
  }
 
  public static void setProxy(String pProxy, String pPort) {
    Properties systemSettings = System.getProperties();
    systemSettings.put("proxySet", "true");
    systemSettings.put("proxyHost", pProxy);
    systemSettings.put("proxyPort", pPort);
    System.setProperties(systemSettings);
  }
}

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License