> { Socket s = null ; try { s = CommunClass.ConnectToServer(Host,Port) ; CommunClass.WriteCommandToSocket(s,"EXECUTEFILE") ; CommunClass.WriteCommandDescToSocket(s,FileName) ; CommunClass.WriteDynamicTextToSocket(s,"",null) ; MessageBox.Show(CommunClass.ReadDynamicTextFromSocket(s)) ; } catch (Exception e) { MessageBox.Show(e.Message) ; } finally { if (s != null) s.Close() ; } } } 下面是服务器端页码:[1] [2] [3] [4] [5] [6] [7] [8] 第7页、共8页 |