구글 토크 메신저 자체 개발

1069 단어 GoogleGmail
Google 토크를 바탕으로 자신만의 채팅 클라이언트를 개발할 수 있습니다
코드는 다음과 같습니다.
public class GoogleTalk {

	/**
	 * @param args
	 * @throws XMPPException 
	 */
	public static void main(String[] args) throws XMPPException {
		XMPPConnection.DEBUG_ENABLED = true;
		XMPPConnection connection = new XMPPConnection("gmail.com");
		connection.connect();
		connection.login("   ", "  ");

		Chat chat = connection.getChatManager().createChat(
				"          ID", new MessageListener() {
					public void processMessage(Chat chat, Message message) {
						System.out.println(message.getFrom() + " "
								+ " :"
								+ message.getBody());
					}

				});
		BufferedReader cmdIn = new BufferedReader(new InputStreamReader(System.in));
		for (;;) {
			try {
				String cmd = cmdIn.readLine();
				if ("!q".equalsIgnoreCase(cmd)) {
					break;
				}
				chat.sendMessage(cmd);
			} catch (Exception ex) {
			}
		}
		connection.disconnect();
		System.exit(0);

	}
}

코드 중의 중국어 설명 부분을 당신의 정보로 바꾸면 됩니다

좋은 웹페이지 즐겨찾기