Java Code Examples for com.alibaba.dubbo.common.serialize.ObjectInput#readUTF()
The following examples show how to use
com.alibaba.dubbo.common.serialize.ObjectInput#readUTF() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractSerializationTest.java From dubbo-2.6.5 with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }
Example 2
Source File: AbstractSerializationTest.java From dubbo-2.6.5 with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }
Example 3
Source File: AbstractSerializationTest.java From dubbo-2.6.5 with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }
Example 4
Source File: AbstractSerializationTest.java From dubbox with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }
Example 5
Source File: AbstractSerializationTest.java From dubbox-hystrix with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }
Example 6
Source File: AbstractSerializationTest.java From dubbo3 with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }
Example 7
Source File: AbstractSerializationTest.java From dubbox with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }
Example 8
Source File: AbstractSerializationTest.java From dubbox with Apache License 2.0 | 6 votes |
@Test public void test_UtfString() throws Exception { ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream); objectOutput.writeUTF("123中华人民共和国"); objectOutput.flushBuffer(); ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream( byteArrayOutputStream.toByteArray()); ObjectInput deserialize = serialization.deserialize(url, byteArrayInputStream); assertEquals("123中华人民共和国", deserialize.readUTF()); try { deserialize.readUTF(); fail(); } catch (IOException expected) { } }