//public string getprotocol()獲取該url的協議名
//public string gethost()獲取該url的主機名
//public string getport()獲取該url的的埠號
//public string getpath()獲取該url的檔案路徑
//public string getfile()獲取該url的檔名
//public string getref()獲取該url在檔案中的相對位置
//public string getquery()獲取該url的查詢名
@test
public void test1() throws exception
//字元流
//urlconnection conn = url.openconnection();
//inputstream is = conn.getinputstream();
//inputstreamreader isr = new inputstreamreader(is,"utf-8");
//bufferedreader br = new bufferedreader(isr);
//bufferedwriter bw = new bufferedwriter(new filewriter("c:\\users\\administrator\\desktop\\1.txt"));
//string str;
//while((str = br.readline()) != null)
//位元組流
urlconnection conn = url.openconnection();
inputstream is1 = conn.getinputstream();
fileoutputstream fos = new fileoutputstream(new file("c:\\users\\administrator\\desktop\\1.txt"));
byte b1 = new byte[1024];
int len1;
while((len1 = is1.read(b1))!= -1)
fos.close();
is1.close();}}
網路程式設計 URI 和 URL
uri 是 uniformresource identifier 的縮寫 uniform 規定統一的格式 可方便處理多種不同型別的資源,而不用根據上下文環境來識別資源指定的訪問方式。另外,加入新增的協議方案 如 http 或 ftp 也更容易。resource 資源的定義是 可標識的任何東西 除了文...
java網路程式設計
1.通訊要素 1.找到對方 ip2.資料要傳送到對方指定的應用程式上,為了標識這些應用程式,所以給這些網路應用程式都用數字進行標識。為了方便稱呼這個數字,叫做 埠,邏輯埠。3.定義通訊規則,這個通訊規則成為協議。國際組織定義了通用協議 tcp ip 2.一些基本方法 inetaddress i in...
Java網路程式設計
1,inetaddress表示ip位址的操作類,可以通過此類指定要連線的主機名稱。2,在開發中如果要取得乙個網路資源可以使用url類進行定位,之後使用io流的方式進行讀取。3,使用urlenoder可以為資訊編碼,使用urldecoder可以為編碼的內容進行解碼操作。4,serversoket主要用...