URL表示舉例

2021-08-30 20:32:56 字數 522 閱讀 1620

url的規範定義rfc 2396

其中在j2me開發時,涉及到connector.open(url)

下面列舉這些url的例子:

清單 1. 呼叫基於 http 的通訊

connection conn = connector.open(

);清單 2. 呼叫基於流的套接字通訊

connection conn = connector.open("socket://localhost:9000");

清單 3. 呼叫基於資料報的套接字通訊

connection conn = connector.open("datagram://:9000");

清單 4. 呼叫串列埠通訊

connection conn = connector.open("comm:0;baudrate=9000");

清單 5. 呼叫檔案 i/o 通訊

file:///root1//work/packet.xml  模擬器除錯

file:///sd        訪問sd卡

嚴蔚敏 串 串的表示和實現 串的應用舉例

include include include define true 1 define false 0 define ok 1 define error 0 define infeasible 1 define overflow 2 typedef int status define maxstr...

python應用舉例 python基礎舉例應用

將下述兩個變數的值交換 s1 alex s2 sb s1,s2 s2,s1 print s1,s2 判斷下述結果 msg1 alex say my name is alex,my age is 73,my is female msg2 alex say my name is alex,my age ...

C placement new 用法舉例

在處理記憶體分配的時候,c 程式設計師會用 new 操作符 operator new 來分配記憶體,並用 delete 操作符 operator delete 來釋放記憶體。這是乙個 new 操作符的例子。class ctest 分配乙個物件 ctest ptest new test 分配乙個有十個...