我想使用 gTalk 之类的 java 实现聊天服务器和客户端,我应该使用什么类型的连接(XAMPP
或Socket Connection
),请指导我,我想为我的最终 sem 项目实现这个。它将有点Instant Messaging
像 gTalk 和Skype。
请给我一些想法/大纲或链接,我可以在其中阅读一些内容,以便我可以研究一些内容并开始实施这些内容。
try {
Socket skt = new Socket("localhost", 1234);
BufferedReader in = new BufferedReader(new
InputStreamReader(skt.getInputStream()));
System.out.print("Received string: '");
while (!in.ready()) {}
System.out.println(in.readLine()); // Read one line and output it
System.out.print("'\n");
in.close();
}
catch(Exception e) {
System.out.print("Whoops! It didn't work!\n");
}
谢谢