All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.tests.bla7 Maven / Gradle / Ivy

package org.jgroups.tests;

import org.jgroups.util.Util;

/**
 * @author Bela Ban
 * @since x.y
 */
public class bla7 {


    public static void main(String[] args) throws Exception {
        String input="Bela Ban";

        byte[] buf=Util.objectToByteBuffer(input);

        String tmp=Util.objectFromByteBuffer(buf);
        assert tmp.equals(input);

        input="Béla Ban";
        buf=Util.objectToByteBuffer(input);

        tmp=Util.objectFromByteBuffer(buf);
        assert tmp.equals(input);

    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy