本文整理汇总了Java中org.jivesoftware.smack.chat.Chat.sendMessage方法的典型用法代码示例。如果您正苦于以下问题:Java Chat.sendMessage方法的具体用法?Java Chat.sendMessage怎么用?Java Chat.sendMessage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jivesoftware.smack.chat.Chat
的用法示例。
在下文中一共展示了Chat.sendMessage方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sendDisplayedReceipt
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
public void sendDisplayedReceipt(String receiverJid, String stanzaId, String dialog_id) {
Chat chat;
if ((chat = privateChats.get(receiverJid)) == null) {
chat = ChatManager.getInstanceFor(privateChatConnection).createChat(receiverJid, this);
privateChats.put(receiverJid, chat);
}
Message message = new Message(receiverJid);
Displayed read = new Displayed(stanzaId);
QuickbloxChatExtension extension = new QuickbloxChatExtension();
extension.setProperty("dialog_id", dialog_id);
message.setStanzaId(StanzaIdUtil.newStanzaId());
message.setType(Message.Type.chat);
message.addExtension(read);
message.addExtension(extension);
try {
chat.sendMessage(message);
} catch (SmackException.NotConnectedException ex) {
Logger.logExceptionToFabric(ex);
offlineMessages.add(message);
}
}
示例2: sendReceivedReceipt
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
public void sendReceivedReceipt(String receiverJid, String stanzaId, String dialog_id) {
Chat chat;
if ((chat = privateChats.get(receiverJid)) == null) {
chat = ChatManager.getInstanceFor(privateChatConnection).createChat(receiverJid, this);
privateChats.put(receiverJid, chat);
}
Message message = new Message(receiverJid);
Received delivered = new Received(stanzaId);
QuickbloxChatExtension extension = new QuickbloxChatExtension();
extension.setProperty("dialog_id", dialog_id);
message.setStanzaId(StanzaIdUtil.newStanzaId());
message.setType(Message.Type.chat);
message.addExtension(delivered);
message.addExtension(extension);
try {
chat.sendMessage(message);
} catch (SmackException.NotConnectedException ex) {
offlineMessages.add(message);
}
}
示例3: sendPrivateMessage
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
public void sendPrivateMessage(String body, String receiverJid, long timestamp, String stanzaId) {
Log.d(TAG, "Sending message to : " + receiverJid);
Chat chat;
if ((chat = privateChats.get(receiverJid)) == null) {
chat = ChatManager.getInstanceFor(privateChatConnection).createChat(receiverJid, this);
privateChats.put(receiverJid, chat);
}
QuickbloxChatExtension extension = new QuickbloxChatExtension();
extension.setProperty("date_sent", timestamp + "");
extension.setProperty("save_to_history", "1");
Message message = new Message(receiverJid);
message.setStanzaId(stanzaId);
message.setBody(body);
message.setType(Message.Type.chat);
message.addExtension(new Markable());
message.addExtension(extension);
try {
chat.sendMessage(message);
} catch (SmackException.NotConnectedException ex) {
offlineMessages.add(message);
}
}
示例4: sendMessage
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
@Test
@BenchmarkOptions(benchmarkRounds = 10, warmupRounds = 0, concurrency = 10)
// round: 1.05 [+- 0.07], round.block: 0.74 [+- 0.25], round.gc: 0.00 [+-
// 0.00], GC.calls: 1, GC.time: 0.01, time.total: 1.08, time.warmup: 0.00,
// time.bench: 1.08
public void sendMessage() throws Exception {
XMPPConnection xmppConnection = xmppConnectionFactory.getXMPPConnection();
System.out.println(xmppConnection);
//
ChatManager chatManager = ChatManager.getInstanceFor(xmppConnection);
Chat chat = chatManager.createChat("[email protected]");
chat.sendMessage("test_123");
//
PoolableXmppConnection conn = (PoolableXmppConnection) xmppConnection;
conn.disconnect();
}
示例5: sendRaw
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
/**
* send the raw string as a message without wrapping it with xml attributes
* @param message the message to be sent
* @param buddyJID the buddy to send the message to
*/
public void sendRaw(String message, String buddyJID){
ChatManager chatManager = ChatManager.getInstanceFor(connection);
if (connection != null && connection.isConnected() && chatManager != null){
try{
Chat chat = chatManager.createChat(buddyJID);
chat.sendMessage(message);
}catch (Exception e){
e.printStackTrace();
}
}
}
示例6: sendTextMessage
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
/**
* sends a text message
*
* @param message the message text to send
* @param buddyJID the Buddy to receive the message
* @return true if sending was successful
*/
public boolean sendTextMessage(String message, String buddyJID, long id){
ChatManager chatManager = ChatManager.getInstanceFor(connection);
if (connection != null && connection.isConnected() && chatManager != null){
if (buddyJID.indexOf('@') == -1)
buddyJID += "@" + service;
Chat chat = chatManager.createChat(buddyJID);
try{
// wrap the message with all necessary xml attributes
Document doc = DocumentBuilderFactory.newInstance()
.newDocumentBuilder().newDocument();
Element msg = doc.createElement("message");
doc.appendChild(msg);
msg.setAttribute("type", MessageHistory.TYPE_TEXT);
msg.setAttribute("id", String.valueOf(id));
Element file = doc.createElement("content");
msg.appendChild(file);
file.setTextContent(message);
// transform everything to a string
Transformer t = TransformerFactory.newInstance().newTransformer();
StringWriter writer = new StringWriter();
StreamResult r = new StreamResult(writer);
t.transform(new DOMSource(doc), r);
message = writer.toString();
// send the message
chat.sendMessage(message);
Log.d("DEBUG", "Success: Sent message");
return true;
}catch (Exception e){
Log.e("ERROR", "Couldn't send message.");
Log.e("ERROR", e.toString());
return false;
}
}
Log.e("ERROR", "Sending failed: No connection.");
return false;
}
示例7: sendAcknowledgement
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
/**
* send an acknowledgement
* @param buddyId the buddyId to receive the acknowledgement
* @param othersId the id the buddy has sent the message with
* @param type the type of acknowledgement to send
* @return true if sending was successful
*/
public boolean sendAcknowledgement(String buddyId, long othersId, String type){
ChatManager chatManager = ChatManager.getInstanceFor(connection);
if (connection != null && connection.isConnected() && chatManager != null){
if (buddyId.indexOf('@') == -1)
buddyId += "@" + service;
Chat chat = chatManager.createChat(buddyId);
try{
// create the message structure
Document doc = DocumentBuilderFactory.newInstance()
.newDocumentBuilder().newDocument();
Element ack = doc.createElement("acknowledgement");
doc.appendChild(ack);
ack.setAttribute("id", String.valueOf(othersId));
ack.setAttribute("type", type);
// create the string representation of the message
Transformer t = TransformerFactory.newInstance().newTransformer();
StringWriter writer = new StringWriter();
StreamResult r = new StreamResult(writer);
t.transform(new DOMSource(doc), r);
String message = writer.toString();
// send the message
chat.sendMessage(message);
Log.d("DEBUG", "Success: Sent message");
return true;
}catch (Exception e){
Log.e("ERROR", "Couldn't send message.");
Log.e("ERROR", e.toString());
return false;
}
}
Log.e("ERROR", "Sending failed: No connection.");
return false;
}
示例8: setCurrentState
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
/**
* Sets the current state of the provided chat. This method will send an empty bodied Message
* stanza(/packet) with the state attached as a {@link org.jivesoftware.smack.packet.ExtensionElement}, if
* and only if the new chat state is different than the last state.
*
* @param newState the new state of the chat
* @param chat the chat.
* @throws NotConnectedException
*/
public void setCurrentState(ChatState newState, Chat chat) throws NotConnectedException {
if(chat == null || newState == null) {
throw new IllegalArgumentException("Arguments cannot be null.");
}
if(!updateChatState(chat, newState)) {
return;
}
Message message = new Message();
ChatStateExtension extension = new ChatStateExtension(newState);
message.addExtension(extension);
chat.sendMessage(message);
}
示例9: sendMessage
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
@Override
public void sendMessage(TxMessage message) {
if(message.getDestination().getType().equals(Resource.Type.ROOM)){
Room room = getRoom(message.getDestination().getAddress());
if(room != null) {
room.sendMessage(message);
}
}else{
XmppRxMessage origin = (XmppRxMessage)message.getRequest();
Chat chat = ChatManager.getInstanceFor(connection).getThreadChat(origin.getThread());
if(chat == null){
logger.trace("chat was null, creating a new chat instance");
chat = ChatManager.getInstanceFor(connection).createChat(message.getDestination().getAddress(),origin.getThread(),null);
}else{
logger.trace("an existing chat was found for thread id {}", (origin.getThread()));
}
try {
Message msg = MessageHelper.createXmppMessage(message);
msg.addExtension(new DeliveryReceipt(origin.getId()));
chat.sendMessage(msg);
} catch (SmackException.NotConnectedException e) {
logger.warn("Trying to send a message on XMPP binding while connection is closed",e);
}
}
}
示例10: sendImageMessage
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
/**
* sends an image message
*
* @param serverFile the file on the server
* @param description the description of the sent image
* @param buddyJID the Buddy to receive the message
* @return true if sending was successful
*/
public boolean sendImageMessage(String serverFile, String description, String
buddyJID, long id){
if (buddyJID.indexOf('@') == -1)
buddyJID += "@" + service;
ChatManager chatManager = ChatManager.getInstanceFor(connection);
if (connection != null && connection.isConnected() && chatManager != null){
Chat chat = chatManager.createChat(buddyJID);
try{
//generate the message in order to set the type to image
Document doc = DocumentBuilderFactory.newInstance()
.newDocumentBuilder().newDocument();
Element msg = doc.createElement("message");
doc.appendChild(msg);
msg.setAttribute("type", MessageHistory.TYPE_IMAGE);
msg.setAttribute("id", String.valueOf(id));
Element file = doc.createElement("file");
msg.appendChild(file);
file.setTextContent(serverFile);
Element desc = doc.createElement("description");
msg.appendChild(desc);
desc.setTextContent(description);
// create the string
Transformer t = TransformerFactory.newInstance().newTransformer();
StringWriter writer = new StringWriter();
StreamResult r = new StreamResult(writer);
t.transform(new DOMSource(doc), r);
String message = writer.toString();
// send the message
chat.sendMessage(message);
Log.d("DEBUG", "Success: Sent message");
return true;
}catch (Exception e){
Log.e("ERROR", "Couldn't send message.");
Log.e("ERROR", e.toString());
return false;
}
}
Log.e("ERROR", "Sending failed: No connection.");
return false;
}
示例11: sendMessage
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
private void sendMessage(String destinationJID, String message) throws SmackException.NotConnectedException {
Logger.debug(TAG, "Sending message to " + destinationJID);
Chat chat = ChatManager.getInstanceFor(mConnection).createChat(destinationJID, this);
chat.sendMessage(message);
}
示例12: sendMessage
import org.jivesoftware.smack.chat.Chat; //导入方法依赖的package包/类
@Override
public void sendMessage(String userJID, String text) throws NotConnectedException {
errorIfClosed();
Chat chat = delegate.createChat(userJID);
chat.sendMessage(text);
}