Skip to content

Instantly share code, notes, and snippets.

@eldermoraes
Created August 31, 2018 12:42
Show Gist options
  • Select an option

  • Save eldermoraes/e2c8c795deba2ea2df6c84ebd6cbd48a to your computer and use it in GitHub Desktop.

Select an option

Save eldermoraes/e2c8c795deba2ea2df6c84ebd6cbd48a to your computer and use it in GitHub Desktop.
public class ZipHandler implements FileHandler {
@Override
public void handle(@ObservesAsync @Zip FileEvent file) throws
IOException {
FileSystemUtils.save( file.getFile(),"zip","zip_"+ new Date().getTime() + ".zip" );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment