openfire查看进出包

1  监测发出包情况

在org.jivesoftware.openfire.nio包下的 ConnectionHandler 类下的messageSent方法中加入:

System.out.println("--SENT:"+ Charset.forName("UTF-8").decode(((ByteBuffer)message).buf()));

 

2  监测入包情况

在org.jivesoftware.openfire.nio包下的ConnectionHandler类下的messageReceived方法中加入:

System.out.println("RECV:" + message);

你可能感兴趣的:(openfire)