Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ええと、ユーザーがチャットで言ったことを確認するには Skype4Java が必要なので、それがコマンドに等しい場合は応答を送信します。応答部分を処理しました。ユーザーがチャットで言ったことを確認する方法を知る必要があるだけです。
それはそのようになります:
Skype.addChatMessageListener(new ChatHandler());
と:
public void chatMessageReceived(ChatMessage chatMessage) throws SkypeException { User sender = chatMessage.getSender(); sender.send("hue" + sender.getId()); }