1
![輸入圖片描述] [1]保存在openfire服務器中的兩個用戶之間的聊天android xmpp
這是可以在openfire服務器保存聊天記錄。我配置了Openfire 3.9.3並連接mysql數據庫。在mysql數據庫中提供了很多表,但是在這些表中我們找不到任何聊天消息表來保存我在兩個用戶之間的聊天。如果任何開發人員知道如何保存聊天消息並使用xmmp在openfire中獲取聊天消息。請儘快幫助我。
//對不起,我不能發佈的Openfire和MySQL數據庫的一個形象,因爲信譽是低於10
// Set a listener to send a chat text message
Button send = (Button) this.findViewById(R.id.send);
send.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
String to = mRecipient.getText().toString();
String text = mSendText.getText().toString();
if(!text.equals("")){
if(connection!=null){
Message msg = new Message(to+"@172.167.41.165", Message.Type.chat);
msg.setBody(text);
connection.sendPacket(msg);
messages.add(connection.getUser() + ":");
messages.add(text);
setListAdapter();
mSendText.setText("");
}
}else{
Toast.makeText(XMPPClient.this, "Please Fill Input Field", Toast.LENGTH_LONG).show();
}
}
});