在mac os x上,可以使用nshost和nsstream物件建立到伺服器的連線。
nsstream類有乙個方法getstreamstohost:port:inputstream:outputstream:,它建立乙個到伺服器的輸入和輸出流,但問題是iphone os不支援getstreamstohost:port:inputstream:outputstream:方法。為了想使用這個方法,你可以增加乙個類別到現有的nsstream類上,替換getstreamstohost:port:inputstream:outputstream:方法提供的功能。
在nsstreamadditions.h檔案中,增加下面的**:
@inte***ce nsstream (myadditions)
+ (void)getstreamstohostnamed:(nsstring *)hostname
port:(nsinteger)port
inputstream:(nsinputstream **)inputstreamptr
outputstream:(nsoutputstream **)outputstreamptr;
@end
在nsstreamadditions檔案中加入以下**:
@implementation nsstream (myadditions)
+ (void)getstreamstohostnamed:(nsstring *)hostname
port:(nsinteger)port
inputstream:(nsinputstream **)inputstreamptr
outputstream:(nsoutputstream **)outputstreamptr
if (outputstreamptr != null)
}@end
上面的**為nsstream類增加了乙個getstreamstohostnamed:port:inputstream:outputstream:方法,現在你可以在你的iphone應用程式中使用這個方法,使用tcp協議連線到伺服器。
SQL SERVER建立連線伺服器
exec master.dbo.sp addlinkedserver server n 連線伺服器名稱 srvproduct n sqlserver provider n sqlncli datasrc n 連線伺服器ip位址 exec master.dbo.sp addlinkedsrvlogin...
伺服器連線
本商品直接使用windows自帶的遠端桌面連線就可以進行使用。點開始 點執行 或者直接用視窗鍵 win r 在執行對話方塊輸入mstsc.exe 2然後按回車 在彈出的遠端桌面軟體介面填寫我在旺旺上發給您的ip位址和埠號 例如218.241.1.129 7755 3然後點連線 輸入使用者名稱和密碼 ...
Nodejs 建立伺服器並與MySQL連線
連線資料庫 const connection mysql.createconnection connection.connect function request 請求資訊 response 返回資訊 let sersql 資料庫查詢語句 connection.query sersql,functi...