mq5.1-source.src.share.java.examples.jms.MessageConversion Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2000-2010 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
import javax.jms.*;
/**
* The MessageConversion class consists only of a main method, which creates
* and then reads a StreamMessage and a BytesMessage. It does not send the
* messages.
*
* The program demonstrates type conversions in StreamMessages: you can write
* data as a String and read it as an Int, and vice versa. The program also
* calls clearBody() to clear the message so that it can be rewritten.
*
* The program also shows how to write and read a BytesMessage using data types
* other than a byte array. Conversion between String and other types is
* not supported.
*
* Before it can read a BytesMessage or StreamMessage that has not been sent,
* the program must call reset() to put the message body in read-only mode
* and reposition the stream.
*/
public class MessageConversion {
/**
* Main method. Takes no arguments.
*/
public static void main(String[] args) {
ConnectionFactory connectionFactory = null;
Connection connection = null;
Session session = null;
BytesMessage bytesMessage = null;
StreamMessage streamMessage = null;
int exitResult = 0;
try {
connectionFactory =
SampleUtilities.getConnectionFactory();
connection =
connectionFactory.createConnection();
session = connection.createSession(false,
Session.AUTO_ACKNOWLEDGE);
} catch (Exception e) {
System.out.println("Connection problem: " + e.toString());
if (connection != null) {
try {
connection.close();
} catch (JMSException ee) {}
}
System.exit(1);
}
try {
/*
* Create a StreamMessage and write values of various data types
* to it.
* Reset the message, then read the values as Strings.
* Values written to a StreamMessage as one data type can be read
* as Strings and vice versa (except for String to char conversion).
*/
streamMessage = session.createStreamMessage();
streamMessage.writeBoolean(false);
streamMessage.writeDouble(123.456789e222);
streamMessage.writeInt(223344);
streamMessage.writeChar('q');
streamMessage.reset();
System.out.println("Reading StreamMessage items of various data"
+ " types as String:");
System.out.println(" Boolean: " + streamMessage.readString());
System.out.println(" Double: " + streamMessage.readString());
System.out.println(" Int: " + streamMessage.readString());
System.out.println(" Char: " + streamMessage.readString());
/*
* Clear the body of the StreamMessage and write several Strings
* to it.
* Reset the message and read the values back as other data types.
*/
streamMessage.clearBody();
streamMessage.writeString("true");
streamMessage.writeString("123.456789e111");
streamMessage.writeString("556677");
// Not char: String to char conversion isn't valid
streamMessage.reset();
System.out.println("Reading StreamMessage String items as other"
+ " data types:");
System.out.println(" Boolean: " + streamMessage.readBoolean());
System.out.println(" Double: " + streamMessage.readDouble());
System.out.println(" Int: " + streamMessage.readInt());
/*
* Create a BytesMessage and write values of various types into
* it.
*/
bytesMessage = session.createBytesMessage();
bytesMessage.writeBoolean(false);
bytesMessage.writeDouble(123.456789e22);
bytesMessage.writeInt(778899);
bytesMessage.writeInt(0x7f800000);
bytesMessage.writeChar('z');
/*
* Reset the message and read the values back. Only limited
* type conversions are possible.
*/
bytesMessage.reset();
System.out.println("Reading BytesMessages of various types:");
System.out.println(" Boolean: " + bytesMessage.readBoolean());
System.out.println(" Double: " + bytesMessage.readDouble());
System.out.println(" Int: " + bytesMessage.readInt());
System.out.println(" Float: " + bytesMessage.readFloat());
System.out.println(" Char: " + bytesMessage.readChar());
} catch (JMSException e) {
System.out.println("JMS Exception occurred: " + e.toString());
exitResult = 1;
} finally {
if (connection != null) {
try {
connection.close();
} catch (JMSException e) {
exitResult = 1;
}
}
}
SampleUtilities.exit(exitResult);
}
}