`
aryanwang
  • 浏览: 19037 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
社区版块
存档分类
最新评论

向websphere mq queue里put和get消息

 
阅读更多

  连接Queue Manager的工具类:

package com.quest.mq;


import java.io.IOException;
import java.util.Hashtable;

import com.ibm.mq.MQException;
import com.ibm.mq.MQQueueManager;
import com.ibm.mq.pcf.PCFMessage;
import com.ibm.mq.pcf.PCFMessageAgent;

public class MQTool {

	
	public String queueManagerName = "QM";
	public String hostname = "localhost";
	public int port = 1411;
	public String channel = "SYSTEM.DEF.SVRCONN";
	protected Hashtable<String, Object> properties = new Hashtable<String, Object>();

	public MQTool(String queueManagerName, String hostname, int port, String channel){
		this.queueManagerName = queueManagerName;
		this.hostname = hostname;
		this.port = port;
		this.channel = channel;
		try 
		{
			queueManager = new MQQueueManager(queueManagerName, getConnectionProperties());
			agent = new PCFMessageAgent();
			agent.connect(queueManager);
		} catch (Exception e)
		{
			e.printStackTrace();
		}
	}
	
	public PCFMessageAgent agent = null;
	public MQQueueManager queueManager = null;
	
	public MQQueueManager getQueueManager() {
		return queueManager;
	}

	public final boolean isNullOrEmpty(String input)
	{
		boolean result = false;
		if(input == null)
		{
			result = true;
		}else if(input.length() == 0)
		{
			result = true;
		}
		return result;
	}

	/**
	 * Construct MQ queue manager connection properties 
	 * @param hostname
	 * @param port
	 * @param channel
	 * @return
	 */
	private Hashtable<String, Object> getConnectionProperties()
	{
		properties.put("hostname", hostname);
		properties.put("port", port);
		properties.put("channel", channel);
		System.out.println("Connection informations: " + properties);
		System.out.println("Connect QM :" + queueManagerName);
	    return properties;
	}
	
	/**
	 * Get access to a command agent, based on a queue manager name
	 * @param queueManagerName the queue manager name
	 * @return
	 */
	public PCFMessageAgent getAgent() 
	{
		return agent;
	}
	
	protected PCFMessage[] pcfInquire(PCFMessage queuePCF) throws MQException, IOException{

		getAgent().connect(queueManager);
		PCFMessage[] responses = getAgent().send(queuePCF);
		getAgent().disconnect();
		
		return responses;
	}
} 

 

 对一条Queue的放入消息,取出消息:

import java.io.IOException;

import com.ibm.mq.MQException;
import com.ibm.mq.MQGetMessageOptions;
import com.ibm.mq.MQMessage;
import com.ibm.mq.MQQueue;
import com.ibm.mq.MQQueueManager;
import com.ibm.mq.MQTopic;
import com.ibm.mq.constants.CMQC;
import com.ibm.mq.constants.MQConstants;
import com.quest.mq.MQTool;

public class MQTest {

	/**
	 * @param args
	 * @throws MQException 
	 * @throws IOException 
	 * @throws InterruptedException 
	 */
	public static void main(String[] args) throws MQException, IOException, InterruptedException {
		
		String queueManagerName = "QM1";
		String hostname = "127.0.0.1";
		int port = 1421;
		String channel = "SYSTEM.DEF.SVRCONN";
		MQTool mqTool = new MQTool(queueManagerName, hostname, port, channel);
		MQQueueManager queueManager = mqTool.getQueueManager();

		
		//放入消息
		MQQueue queue1 = queueManager.accessQueue("apple2", CMQC.MQOO_OUTPUT);
		MQMessage message1 = new MQMessage();
		message1.writeString("33333");
		queue1.put(message1);
		
		//不消费消息
		MQQueue queue2 = queueManager.accessQueue("apple2", MQConstants.MQOO_BROWSE | MQConstants.MQOO_INQUIRE);
		MQGetMessageOptions getMsgOption = new MQGetMessageOptions();
		getMsgOption.options = MQConstants.MQGMO_BROWSE_NEXT;
		
		for(int i=0; i< queue2.getCurrentDepth(); i++){
			MQMessage message = new MQMessage();
			queue2.get(message, getMsgOption);
			System.out.println(message.readStringOfCharLength(message.getDataLength()));
		}
		//消费消息
		MQQueue queue3 = queueManager.accessQueue("apple2", CMQC.MQOO_INPUT_AS_Q_DEF | MQConstants.MQOO_INQUIRE);
		int depth = queue3.getCurrentDepth();
		for(int i=0; i < depth; i++){
			MQMessage message = new MQMessage();
			queue3.get(message);
			System.out.println(message.readStringOfCharLength(message.getDataLength())+ "----");
			System.out.println("===");
		}
	}

}

 

 

分享到:
评论

相关推荐

    C# 实现消息的收发IBM WebSphere MQ 消息队列

    在本文中,我们将深入探讨如何使用C#编程语言与IBM WebSphere MQ进行交互,实现消息的发送和接收。IBM WebSphere MQ(前身为MQSeries)是一种企业级的消息中间件,它提供了一种可靠且可扩展的方式,使得应用程序可以...

    IBM WebSphere MQ V7 jar

    例如,可以使用`MQQueueManager.connect()`方法建立连接,`MQQueueManager.getQueue()`获取队列,`MQQueue.put()`和`MQQueue.get()`分别用于发送和接收消息。 总的来说,IBM WebSphere MQ V7 jar为Java开发者提供了...

    Java下操作IBM Websphere MQ的项目案例

    5. **发送和接收消息**:使用`MQQueue`对象的`put()`和`get()`方法发送和接收消息。消息通常是`MQMessage`对象,可以携带二进制数据或文本。 6. **JNDI(Java Naming and Directory Interface)**:在更复杂的应用...

    WebSphere MQ 傻瓜安装指南

    此外,还需要理解和使用队列管理器的上下文对象(MQQueueManager),队列对象(MQQueue)和其他相关的结构体和枚举类型。 四、注意事项: - 安装过程中,务必按照文档的顺序执行每一步,确保所有依赖项已满足。 - ...

    IBM websphere MQ 命令大全

    - **示例**:`DISPLAY QUEUE TestQueue DESCR GET PUT` 显示名为 TestQueue 的队列的描述信息以及获取和放置操作次数。 - **`DISPLAY QUEUE &lt;QNAME&gt; MAXDEPTH CURDEPTH`**: - **功能**:显示指定队列的最大深度和...

    IBM WebSphere MQ 7.5基本用法

    WebSphere MQ提供了队列管理器(Queue Manager)和消息队列(Queues)的概念,队列管理器负责管理和调度消息,而消息队列则存储待处理的消息。 在IBM WebSphere MQ 7.5中,设置和配置主要包括以下步骤: 1. 安装与...

    C# 实现消息的收发IBM WebSphere MQ 队列

    IBM WebSphere MQ(以前称为WebSphere Message Broker)是此类系统的一个杰出代表,它提供了高可用性、可扩展性和跨平台的消息队列服务。本实例将深入探讨如何使用C#语言来实现与IBM WebSphere MQ的交互,进行消息的...

    WebSphere_MQ

    然后,可以使用 PUT 命令来往队列中放入消息,例如:PUT ‘MYRECEIVER.QUEUE’ ‘Hello, World!’。最后,可以使用 GET 命令来读取消息,例如:GET ‘MYRECEIVER.QUEUE’。 WebSphere MQ 提供了一个强大且灵活的...

    C#操作IBM Websphere MQ收发消息

    MQQueue queue = queueManager.AccessQueue("MYQUEUE", MQC.MQOO_OUTPUT); // 发送消息 MQMessage sendMessage = new MQMessage(); sendMessage.WriteString("Hello, World!"); queue.Put(sendMessage); /...

    Websphere MQ using C++

    IBM WebSphere MQ 是一个消息中间件产品,它能够帮助应用程序在分布式环境中可靠地发送和接收消息。通过使用 WebSphere MQ,开发人员可以构建出高度可扩展且健壮的应用程序。本文章基于 WebSphere MQ C++ 应用接口 ...

    IBM-WebSphere-MQ介绍安装以及配置服务详解.docx编程资料

    **MQ**,即**Message Queue**(消息队列),是一种应用程序间的通信方式,通过队列来实现数据通信,无需专用链接。MQ 提供了一种可靠、高效的数据传输机制。 #### 二、MQ 的通信方式 ##### 1. 数据报方式 ...

    WebSphere message queue tool QLoad

    消息队列(Message Queue)是WMQ中用于存放消息的虚拟存储空间,应用程序可以向队列发送消息(Put)并从队列中接收消息(Get)。在消息队列中,消息按照先进先出(FIFO)的原则进行处理。WebSphere MQ还提供事务处理...

    websphere mq

    5. **发送/接收消息**:利用`MQPUT`或`MQGET`函数进行消息的发送和接收。 6. **事务管理**:通过`MQBEGIN`、`MQCMIT`或`MQBACK`等函数来控制事务的开始、提交或回滚。 ##### 2.3 触发程序 WebSphere MQ 支持触发...

    WebSphere MQ程序设计

    MQQueue queue = qMgr.accessQueue("LQ_SAMPLE", MQC.MQOO_INPUT_AS_Q_DEF); ``` ##### 3. 发送消息 - 使用`com.ibm.mq.MQMessage`类构建消息,并通过队列发送。 - 示例代码: ```java MQMessage msg = new MQ...

    java客户端从MQ队列接收消息的三种方法

    然后,创建`MQQueueManager`、`MQQueue`对象,接着调用`get()`方法获取消息。 ```java MQEnvironment.hostname = "hostname"; MQEnvironment.port = port; MQEnvironment.channel = "channel"; MQEnvironment....

    JAVA IBM MQ 接收、发送

    3. **接收消息**:调用MQQueue的get()方法,获取队列中的第一条消息,并将其存储在一个MQMessage对象中。 4. **读取消息**:从MQMessage对象中读取接收到的数据,如使用readUTF()或readBytes()方法。 以下是一个...

    IBM MQ JAVA DEMO

    - 最后,调用MQQueue的put方法将消息放入队列。 2. `Mq_getutf.java`:这个文件则演示了如何从队列中读取(Get)并解码UTF-8编码的消息。GET操作是从队列中取出消息。这个示例可能包括: - 同样初始化...

    was mq信息交换

    3. 发送消息:创建MQMessage对象,写入消息内容,然后使用MQQueue的put方法发送消息。 4. 接收消息:创建MQGetMessageOptions对象,设置接收模式,然后使用MQQueue的get方法接收消息。 5. 关闭资源:使用完后,关闭...

Global site tag (gtag.js) - Google Analytics