Skip to content

renaud/Clipboarder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 

Repository files navigation

Clipboarder lets you save data and retrieve data in a quick and dirty way.
I use it a lot when I am doing prototyping.
It's basically just a wrapper around the java serialization API.

Usage:

// save any serializable object
List<Widgets> widgets = getListFromDb();
Clipboarder.put(widget, "widgets_version12");

// retrieve the object in another program
List<Widgets> widgets = (List<Widgets>) Clipboarder.get("widgets_version12");

About

Clipboarder lets you save data and retrieve data in a quick and dirty way.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages