Package org.apache.jena.atlas.io

Examples of org.apache.jena.atlas.io.OutStreamUTF8


        static void testOut(String x)
        {
            try {
                byte[] bytes = stringAsBytes(x) ;
                ByteArrayOutputStream bout = new ByteArrayOutputStream() ;
                Writer out = new OutStreamUTF8(bout) ;
                out.write(x) ;
                out.close() ;
                byte[] bytes2 = bout.toByteArray() ;
                assertArrayEquals(bytes, bytes2) ;
            } catch (IOException ex) { throw new RuntimeException(ex) ; }
        }
View Full Code Here

TOP

Related Classes of org.apache.jena.atlas.io.OutStreamUTF8

Copyright © 2018 www.massapicom. 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.