Examples of write_octet_array()


Examples of org.omg.CORBA.portable.OutputStream.write_octet_array()

    private void verifyDataUsingPortableApi(byte[] data)
    {
        assertNotNull(data);

        OutputStream out = orb.create_output_stream();
        out.write_octet_array(data, 0, data.length);
        InputStream in = out.create_input_stream();
        assertEquals(1234, in.read_long());
    }
}
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.