Hi people..
i am very new to hdf5
i have an object (message is the name of the object in the given code)which
carries a serialized text.
i want to write it to hdf5 file using opaque data type specifically.
how do i go about doing it?
private static int count = 0;
public static void record(Message message)
{
try
{
BufferedOutputStream buf=new BufferedOutputStream(new
FileOutputStream("E:/proj/"+count+".bin"));
byte[] b =serializer.serialize(message);
buf.write(b);
buf.flush();
count++;
}
catch(Exception e){}
}
--
View this message in context:
http://hdf-forum.184993.n3.nabble.com/Creating-opaque-data-types-from-Java-tp2714926p3803053.html
Sent from the hdf-forum mailing list archive at Nabble.com.
_______________________________________________
Hdf-forum is for HDF software users discussion.
[email protected]
http://mail.hdfgroup.org/mailman/listinfo/hdf-forum_hdfgroup.org