625626627628629630631632633634635636
} } public static void startNetworkServer() throws Exception { try { NWServerThread nsw = new NWServerThread("localhost", 1900); nsw.start(); Thread.sleep(10000); } catch (Exception e) { e.printStackTrace(); throw e; }
913914915916917918919920921922923924
} } public static void startNetworkServer() throws Exception { try { NWServerThread nsw = new NWServerThread("localhost", 1900); nsw.start(); Thread.sleep(10000); } catch (Exception e) { e.printStackTrace( logger ); throw e; }