moderatorman / meridian-serial

save subsystem for private project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Binary Serialization assistant

This library is super straightforward.

Here's how you write objects

FormatWriter<T> writer = new FormatWriter<T>();
writer.write(object, path);

And this is how you read objects

FormatReader<T> reader = new FormatReader<T>();
T object = reader.read(path);

A full, working example can be found here.

About

save subsystem for private project


Languages

Language:Java 100.0%