Back to project page schat.
The source code is released under:
MIT License
If you think the Android project schat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
import networking.SChatServer; /*from w w w . ja v a2s . co m*/ /** * SChat Server tester * * @author Gary Ye * @version 2013/11/29 */ public class ServerMain { public static void main(String[] args) { try { new SChatServer(Integer.parseInt(args[0])); } catch (Exception e) { System.err.println("usage: java ServerMain <port>"); } } }