Package javax.jms

Examples of javax.jms.BytesMessage.readUTF()


    assertEquals(myShort, m2.readShort());
    assertEquals(myInt, m2.readInt());
    assertEquals(myLong, m2.readLong());
    assertEquals(myFloat, m2.readFloat(), 0);
    assertEquals(myDouble, m2.readDouble(), 0);
    assertEquals(myString, m2.readUTF());

    bytes = new byte[6];
    ret = m2.readBytes(bytes);
    assertEquals(6, ret);
    assertByteArraysEqual(myBytes, bytes);
View Full Code Here


      // OK
    }

    try
    {
      m2.readUTF();
      fail();
    } catch (MessageEOFException e)
    {
      // OK
    }
View Full Code Here

      assertEquals(new Double(8.0), new Double(bm.readDouble()));
      assertEquals(new Float(9.0), new Float(bm.readFloat()));
      assertEquals(10, bm.readInt());
      assertEquals(11l, bm.readLong());
      assertEquals((short)12, bm.readShort());
      assertEquals("this is an UTF String", bm.readUTF());
   }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.