English 中文(简体)
从 Java 将信件放入队列
原标题:Put message into queue from Java
  • 时间:2012-05-24 12:23:54
  •  标签:
  • java
  • mq

我试图从 Java 代码( 在我的本地机器中) 的队列中插入一条信息 。 我得到了错误 :

不满意LinkError:在java.library.path中没有mqjbnd05。

这是我的代码:

qMgr = new MQQueueManager(qManager);
int openOptions = MQC.MQOO_INPUT_AS_Q_DEF | MQC.MQOO_OUTPUT ;

MQQueue queue = qMgr.accessQueue("Q1",openOptions); 
MQMessage msg = new MQMessage();
msg.writeUTF("this is a test message"); 

MQPutMessageOptions pmo = new MQPutMessageOptions();
queue.put(msg, pmo); 

MQMessage retrievedMessage = new MQMessage();
retrievedMessage.messageId = msg.messageId;

MQGetMessageOptions gmo = new MQGetMessageOptions();
queue.get(retrievedMessage, gmo);
String msgText = retrievedMessage.readUTF();
System.out.println("The message is: " + msgText);

queue.close();
qMgr.disconnect();

My Queue Manager is QM_FORD and queue name is Q1. Listener port is 1414. The environment variables are set properly. Can anyone please guide me on this?

问题回答

问题不在您的 Java 代码中。 不满意链接错误是指找不到本地库(. dll in Windows, so in Unix) 。 它要么丢失, 要么没有在环境变量中引用: PATH( Windows) 或 LD_ Libriary_ PATH 或 LIBPATH 等, 取决于运行系统。

< a href=" "https://www.google.com/search?rlz=1C1C1CHFX_enUS389US389 & amp;aq=0&oq=java.lang.unsatisfied&sugfied&sugfied=chrome=chrom=8&sourcid=chrome&ie=UTF-8&q=java.lang.unsatisfiedlinkerror " rel=“no follow” >gogling可能给你们一些想法

问题在于缺少的液态液态。 设置您的 LD_ 液态气态气态气态气态气态气态气态/ java/ lib (for Unix)





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签