Package pivot.core.test

Source Code of pivot.core.test.CSVSerializerTest

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in
* compliance with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package pivot.core.test;

import java.io.StringReader;
import java.io.StringWriter;
import pivot.collections.List;
import pivot.serialization.CSVSerializer;

public class CSVSerializerTest {
    public static String[] testStrings = {
        "\"Y\"\"HO,O\",26.11,-0.33,X",
        "0,1,2,3\nQ,5,6,7\n8,9,10,11",
        "a,b,c,d",
        "hello,world",
        "2,4,6,8,10"
    };

    public static void main(String[] args) {
        CSVSerializer csvSerializer = new CSVSerializer();
        csvSerializer.getKeys().add("A");
        csvSerializer.getKeys().add("B");
        csvSerializer.getKeys().add("C");
        csvSerializer.getKeys().add("D");

        for (int i = 0, n = testStrings.length; i < n; i++) {
            try {
                System.out.println("Input: " + testStrings[i]);
                List<?> objects = csvSerializer.readObject(new StringReader(testStrings[i]));

                StringWriter writer = new StringWriter();
                csvSerializer.writeObject(objects, writer);
                System.out.println("Output: " + writer);
            } catch(Exception exception) {
                System.out.println(exception);
            }
        }
    }
}
TOP

Related Classes of pivot.core.test.CSVSerializerTest

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.