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));
}