<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆-57  評論-117  文章-1  trackbacks-0

    在文章開始,請你了解和熟悉openfire方面的相關知識,這樣對你理解下面代碼以及下面代碼的用途有很好的了解。同時,你可能需要安裝一個簡單的CS聊天工具,來測試你的代碼是否成功的在openfire服務器上建立會話鏈接,并成功的向在線用戶發(fā)送聊天消息。

    必須了解:http://www.cnblogs.com/hoojo/archive/2012/05/17/2506769.html

    http://www.cnblogs.com/hoojo/archive/2012/05/13/2498151.html (非windows 系統(tǒng))

    可選:http://www.cnblogs.com/hoojo/archive/2012/05/17/2506845.html

    http://www.cnblogs.com/hoojo/archive/2012/06/18/2553975.html

     

    聊天軟件Spark,用于測試聊天消息發(fā)送是否成功,下載地址:http://www.igniterealtime.org/downloads/download-landing.jsp?file=spark/spark_2_6_3.exe

     

    然后你需要添加smack相關的jar包

    smack.jar
    smackx.jar

    jar包下載地址:http://www.igniterealtime.org/downloads/download-landing.jsp?file=smack/smack_3_2_2.zip

    代碼中還用到了junit,junit jar下載地址:http://ebr.springsource.com/repository/app/bundle/version/download?name=com.springsource.org.junit&version=4.8.2&type=binary

     

    下面開始代碼部分

    package com.hoo.smack;
     
    import java.util.Collection;
    import java.util.Iterator;
    import javax.net.SocketFactory;
    import org.jivesoftware.smack.AccountManager;
    import org.jivesoftware.smack.Chat;
    import org.jivesoftware.smack.ChatManager;
    import org.jivesoftware.smack.Connection;
    import org.jivesoftware.smack.ConnectionConfiguration;
    import org.jivesoftware.smack.MessageListener;
    import org.jivesoftware.smack.Roster;
    import org.jivesoftware.smack.RosterEntry;
    import org.jivesoftware.smack.XMPPConnection;
    import org.jivesoftware.smack.XMPPException;
    import org.jivesoftware.smack.packet.Message;
    import org.jivesoftware.smack.packet.Presence;
    import org.jivesoftware.smack.packet.Session;
    import org.jivesoftware.smack.packet.Message.Type;
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test;
     
    /**
     * <b>function:</b> 利用Smack框架完成 XMPP 協(xié)議通信
     * @author hoojo
     * @createDate 2012-5-22 上午10:28:18
     * @file ConnectionServerTest.java
     * @package com.hoo.smack.conn
     * @project jwchat
     * @blog http://blog.csdn.net/IBM_hoojo
     * @email hoojo_@126.com
     * @version 1.0
     */
    public class SmackXMPPTest {
     
        private Connection connection;
        private ConnectionConfiguration config;
        /** openfire服務器address */
        private final static String server = "192.168.8.32";
        
        private final void fail(Object o) {
            if (o != null) {
                System.out.println(o);
            }
        }
        
        private final void fail(Object o, Object... args) {
            if (o != null && args != null && args.length > 0) {
                String s = o.toString();
                for (int i = 0; i < args.length; i++) {
                    String item = args[i] == null ? "" : args[i].toString();
                    if (s.contains("{" + i + "}")) {
                        s = s.replace("{" + i + "}", item);
                    } else {
                        s += " " + item;
                    }
                }
                System.out.println(s);
            }
        }
        
        /**
         * <b>function:</b> 初始Smack對openfire服務器鏈接的基本配置
         * @author hoojo
         * @createDate 2012-6-25 下午04:06:42
         */
        @Before
        public void init() {
            try {
                //connection = new XMPPConnection(server);
                //connection.connect();
                /** 5222是openfire服務器默認的通信端口,你可以登錄http://192.168.8.32:9090/到管理員控制臺查看客戶端到服務器端口 */
                config = new ConnectionConfiguration(server, 5222);
                
                /** 是否啟用壓縮 */ 
                config.setCompressionEnabled(true);
                /** 是否啟用安全驗證 */
                config.setSASLAuthenticationEnabled(true);
                /** 是否啟用調(diào)試 */
                config.setDebuggerEnabled(false);
                //config.setReconnectionAllowed(true);
                //config.setRosterLoadedAtLogin(true);
                
                /** 創(chuàng)建connection鏈接 */
                connection = new XMPPConnection(config);
                /** 建立連接 */
                connection.connect();
            } catch (XMPPException e) {
                e.printStackTrace();
            }
            fail(connection);
            fail(connection.getConnectionID());
        }
        
        @After
        public void destory() {
            if (connection != null) {
                connection.disconnect();
                connection = null;
            }
        }
        
        /**
         * <b>function:</b> ConnectionConfiguration 的基本配置相關信息
         * @author hoojo
         * @createDate 2012-6-25 下午04:11:25
         */
        @Test
        public void testConfig() {
            fail("PKCS11Library: " + config.getPKCS11Library());
            fail("ServiceName: {0}", config.getServiceName());
            // ssl證書密碼
            fail("TruststorePassword: {0}", config.getTruststorePassword());
            fail("TruststorePath: {0}", config.getTruststorePath());
            fail("TruststoreType: {0}", config.getTruststoreType());
            
            SocketFactory socketFactory = config.getSocketFactory();
            fail("SocketFactory: {0}", socketFactory);
            /*try {
                fail("createSocket: {0}", socketFactory.createSocket("localhost", 3333));
            } catch (IOException e) {
                e.printStackTrace();
            }*/
        }
        
        /**
         * <b>function:</b> Connection 基本方法信息
         * @author hoojo
         * @createDate 2012-6-25 下午04:12:04
         */
        @Test
        public void testConnection() {
            /** 用戶管理 */
            AccountManager accountManager = connection.getAccountManager();
            for (String attr : accountManager.getAccountAttributes()) {
                fail("AccountAttribute: {0}", attr);
            }
            fail("AccountInstructions: {0}", accountManager.getAccountInstructions());
            /** 是否鏈接 */
            fail("isConnected:", connection.isConnected());
            fail("isAnonymous:", connection.isAnonymous());
            /** 是否有權限 */
            fail("isAuthenticated:", connection.isAuthenticated());
            fail("isSecureConnection:", connection.isSecureConnection());
            /** 是否使用壓縮 */
            fail("isUsingCompression:", connection.isUsingCompression());
        }
        
        /**
         * <b>function:</b> 用戶管理器
         * @author hoojo
         * @createDate 2012-6-25 下午04:22:31
         */
        @Test
        public void testAccountManager() {
            AccountManager accountManager = connection.getAccountManager();
            for (String attr : accountManager.getAccountAttributes()) {
                fail("AccountAttribute: {0}", attr);
            }
            fail("AccountInstructions: {0}", accountManager.getAccountInstructions());
            
            fail("supportsAccountCreation: {0}", accountManager.supportsAccountCreation());
            try {
                /** 創(chuàng)建一個用戶boy,密碼為boy;你可以在管理員控制臺頁面http://192.168.8.32:9090/user-summary.jsp查看用戶/組的相關信息,來查看是否成功創(chuàng)建用戶 */
                accountManager.createAccount("boy", "boy");
                /** 修改密碼 */
                accountManager.changePassword("abc");
            } catch (XMPPException e) {
                e.printStackTrace();
            }
        }
        
        @Test
        public void testUser() {
            try {
                /** 用戶登陸,用戶名、密碼 */
                connection.login("hoojo", "hoojo");
            } catch (XMPPException e) {
                e.printStackTrace();
            }
            /** 獲取當前登陸用戶 */
            fail("User:", connection.getUser());
            
            /** 所有用戶組 */
            Roster roster = connection.getRoster();
            
            /** 好友用戶組,你可以用Spark添加用戶好友,這樣這里就可以查詢到相關的數(shù)據(jù) */
            Collection<RosterEntry> rosterEntiry = roster.getEntries();
            Iterator<RosterEntry> iter = rosterEntiry.iterator();
            while (iter.hasNext()) {
                RosterEntry entry = iter.next();
                fail("Groups: {0}, Name: {1}, Status: {2}, Type: {3}, User: {4}", entry.getGroups(), entry.getName(), entry.getStatus(), entry.getType(), entry);
            }
            
            fail("-------------------------------");
            /** 未處理、驗證好友,添加過的好友,沒有得到對方同意 */
            Collection<RosterEntry> unfiledEntries = roster.getUnfiledEntries();
            iter = unfiledEntries.iterator();
            while (iter.hasNext()) {
                RosterEntry entry = iter.next();
                fail("Groups: {0}, Name: {1}, Status: {2}, Type: {3}, User: {4}", entry.getGroups(), entry.getName(), entry.getStatus(), entry.getType(), entry);
            }
        }
        
        @Test
        @SuppressWarnings("static-access")
        public void testPacket() {
            try {
                connection.login("hoojo", "hoojo");
            } catch (XMPPException e) {
                e.printStackTrace();
            }
            
            //Packet packet = new Data(new DataPacketExtension("jojo@" + server, 2, "this is a message"));
            //connection.sendPacket(packet);
            
            /** 更改用戶狀態(tài),available=true表示在線,false表示離線,status狀態(tài)簽名;當你登陸后,在Spark客戶端軟件中就可以看到你登陸的狀態(tài) */
            Presence presence = new Presence(Presence.Type.available);
            presence.setStatus("Q我吧");
            connection.sendPacket(presence);
            
            Session session = new Session();
            String sessid = session.nextID();
            connection.sendPacket(session);
            /** 向jojo@192.168.8.32 發(fā)送聊天消息,此時你需要用Spark軟件登陸jojo這個用戶,
             * 這樣代碼就可以向jojo這個用戶發(fā)送聊天消息,Spark登陸的jojo用戶就可以接收到消息
             **/
            /** Type.chat 表示聊天,groupchat多人聊天,error錯誤,headline在線用戶; */
            Message message = new Message("jojo@" + server, Type.chat);
            //Message message = new Message(sessid, Type.chat);
            message.setBody("h!~ jojo, I'am is hoojo!");
            connection.sendPacket(message);
            
            try {
                Thread.sleep(1);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        
        /**
         * <b>function:</b> 測試聊天消息管理類
         * @author hoojo
         * @createDate 2012-6-25 下午05:03:23
         */
        @Test
        public void testChatManager() {
            /** 設置狀態(tài) */
            try {
                connection.login("hoojo", "hoojo");
            } catch (XMPPException e) {
                e.printStackTrace();
            }
            
            /** 設置狀態(tài) */
            Presence presence = new Presence(Presence.Type.available);
            presence.setStatus("Q我吧");
            connection.sendPacket(presence);
            
            /** 獲取當前登陸用戶的聊天管理器 */
            ChatManager chatManager = connection.getChatManager();
            /** 為指定用戶創(chuàng)建一個chat,MyMessageListeners用于監(jiān)聽對方發(fā)過來的消息  */
            Chat chat = chatManager.createChat("jojo@" + server, new MyMessageListeners());
            try {
                /** 發(fā)送消息 */
                chat.sendMessage("h!~ jojo……");
                
                /** 用message對象發(fā)送消息 */
                Message message = new Message();
                message.setBody("message");
                message.setProperty("color", "red");
                chat.sendMessage(message);
            } catch (XMPPException e) {
                e.printStackTrace();
            }
            try {
                Thread.sleep(1000 * 1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        
        /**
         * <b>function:</b> 消息監(jiān)聽器,用戶監(jiān)聽對方發(fā)送的消息,也可以想對方發(fā)送消息
         * @author hoojo
         * @createDate 2012-6-25 下午05:05:31
         * @file SmackXMPPTest.java
         * @package com.hoo.smack
         * @project jwchat
         * @blog http://blog.csdn.net/IBM_hoojo
         * @email hoojo_@126.com
         * @version 1.0
         */
        class MyMessageListeners implements MessageListener {
            public void processMessage(Chat chat, Message message) {
                try {
                    /** 發(fā)送消息 */
                    chat.sendMessage("dingding……" + message.getBody());
                } catch (XMPPException e) {
                    e.printStackTrace();
                }
                /** 接收消息 */
                fail("From: {0}, To: {1}, Type: {2}, Sub: {3}", message.getFrom(), message.getTo(), message.getType(), message.toXML());
                /*Collection<Body> bodys =  message.getBodies();
                for (Body body : bodys) {
                    fail("bodies[{0}]", body.getMessage());
                }
                //fail(message.getLanguage());
                //fail(message.getThread());
                //fail(message.getXmlns());*/
                fail("body: ", message.getBody());
            }
        }
    }

    好了,這些都是smack的基本功能,還有更多的東西需要研究,下次有機會再分享!



    作者:hoojo
    出處:
    blog:http://blog.csdn.net/IBM_hoojo
             http://hoojo.cnblogs.com
    本文版權歸作者和博客園共有,歡迎轉(zhuǎn)載,但未經(jīng)作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法律責任的權利。


    版權所有,轉(zhuǎn)載請注明出處 本文出自:
    分享道版權所有,歡迎轉(zhuǎn)載,轉(zhuǎn)載請注明出處,謝謝

    評論:
    # re: Smack 結(jié)合 Openfire服務器,建立IM通信,發(fā)送聊天消息 2014-05-13 16:14 | 小學校
    小學校  回復  更多評論
      
    # re: Smack 結(jié)合 Openfire服務器,建立IM通信,發(fā)送聊天消息 2014-07-15 17:34 | sds
    fuck  回復  更多評論
      
    主站蜘蛛池模板: 成人性生免费视频| 一级特黄aa毛片免费观看| 一级毛片免费不卡直观看| 久久九九久精品国产免费直播| 91免费在线视频| 5g影院5g天天爽永久免费影院 | 国产亚洲精品美女2020久久| 一级毛片无遮挡免费全部| 日本视频在线观看永久免费| 青青在线久青草免费观看| 免费人成在线观看网站品爱网日本| 日韩精品亚洲aⅴ在线影院| 亚洲色欲www综合网| 337P日本欧洲亚洲大胆精品| 两个人日本WWW免费版| 四虎最新永久免费视频| 免费国产a国产片高清网站| 亚洲AV区无码字幕中文色| 亚洲乱亚洲乱妇24p| 91视频精品全国免费观看| 久久综合AV免费观看| 国产午夜亚洲不卡| 亚洲乱码一区av春药高潮| 欧洲乱码伦视频免费国产 | 国产三级在线观看免费| 精品亚洲视频在线观看| 91亚洲自偷在线观看国产馆| 男人j进女人p免费视频| 亚洲一区免费视频| 国产日韩成人亚洲丁香婷婷| 亚洲中文字幕一二三四区苍井空| 一区二区三区免费视频观看| 美女视频黄的全免费视频| 曰韩亚洲av人人夜夜澡人人爽 | 免费无遮挡无遮羞在线看| 天天影院成人免费观看| 亚洲中文字幕无码一区| 亚洲伊人久久大香线蕉AV| 中文无码成人免费视频在线观看| 免费毛片在线播放| 亚洲精品福利网泷泽萝拉|