Package pivot.serialization

Examples of pivot.serialization.Serializer


public class PropertiesSerializerTest
{
    @SuppressWarnings({"unchecked"})
    public static void main(String[] args) {
        Serializer serializer = new PropertiesSerializer();

        Map<String, Object> testMap = new HashMap<String, Object>();
        testMap.put("hello",   "Hello World");
        testMap.put("number"123.456);
        testMap.put("boolean", true);
        testMap.put("i18n",    "€ & אטלעש")// test some chars to encode ...
        testMap.put("object"new Object());

        ByteArrayOutputStream outputStream = null;
        try {
            try {
                outputStream = new ByteArrayOutputStream();
                serializer.writeObject(testMap, outputStream);
            } finally {
                outputStream.close();

                String dump = new String(outputStream.toByteArray());
                System.out.println("Succesfully Written");
                System.out.println(dump);
            }
        } catch(Exception exception) {
            System.out.println(exception);
        }

        ByteArrayInputStream inputStream = null;
        Map<String, Object> readData = null;
        try {
            try {
                inputStream = new ByteArrayInputStream(outputStream.toByteArray());
                readData = (Map<String, Object>) serializer.readObject(inputStream);

                System.out.println("Succesfully Read");
                for (String key : readData) {
                    System.out.println(key + "=" + readData.get(key));
                }
View Full Code Here


public class PropertiesSerializerTest
{
    @SuppressWarnings("unchecked")
    public static void main(String[] args) {
        Serializer serializer = new PropertiesSerializer();

        Map<String, Object> testMap = new HashMap<String, Object>();
        testMap.put("hello",   "Hello World");
        testMap.put("number"123.456);
        testMap.put("boolean", true);
        testMap.put("i18n",    "€ & אטלעש")// test some chars to encode ...
        testMap.put("object"new Object());

        ByteArrayOutputStream outputStream = null;
        try {
            try {
                outputStream = new ByteArrayOutputStream();
                serializer.writeObject(testMap, outputStream);
            } finally {
                outputStream.close();

                String dump = new String(outputStream.toByteArray());
                System.out.println("Succesfully Written");
                System.out.println(dump);
            }
        } catch(Exception exception) {
            System.out.println(exception);
        }

        ByteArrayInputStream inputStream = null;
        Map<String, Object> readData = null;
        try {
            try {
                inputStream = new ByteArrayInputStream(outputStream.toByteArray());
                readData = (Map<String, Object>) serializer.readObject(inputStream);

                System.out.println("Succesfully Read");
                for (String key : readData) {
                    System.out.println(key + "=" + readData.get(key));
                }
View Full Code Here

TOP

Related Classes of pivot.serialization.Serializer

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.