Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ainslec/GWTJSZip
GWT wrapper for jszip.js
https://github.com/ainslec/GWTJSZip
Last synced: 20 days ago
JSON representation
GWT wrapper for jszip.js
- Host: GitHub
- URL: https://github.com/ainslec/GWTJSZip
- Owner: ainslec
- License: apache-2.0
- Fork: true (akjava/GWTJSZip)
- Created: 2020-01-19T02:05:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-19T04:19:07.000Z (almost 5 years ago)
- Last Synced: 2023-07-05T17:04:27.784Z (over 1 year ago)
- Language: Java
- Size: 21 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.asc
- License: LICENSE
Awesome Lists containing this project
- gwt-boot-awesome-lili - gwtjszip - Library for zip files based on [jszip](https://stuk.github.io/jszip) (ZIP Files and LZMA Compression)
- gwt-boot-awesome-lili - gwtjszip - Library for zip files based on [jszip](https://stuk.github.io/jszip) (ZIP Files and LZMA Compression)
README
# gwt-jszip
A GWT wrapper for JSZip forked from 99% based upon https://github.com/akjava/GWTJSZip by Aki Miyazaki. It has been tested to work fine with GWT 2.8.2.
It does not use JSInterop.
## Why fork it?
The original version dragged in about 10 megabytes of non required libraries and also did not have a Maven build.
This version is over 100 time smaller, is easy to consume using Maven, and also does not place unwanted css inside the compiled GWT application.
## GWT Config
.In your module's .gwt.xml file:
----------
## Maven Config
.In your maven build file:
-----
org.ainslec
gwt-jszip
1.0.0
gwt-lib
-----## How to use
Some sample usage of this library can be found here:
https://github.com/akjava/GWTJSZip/blob/master/src/com/akjava/gwt/samplejszip/client/SampleJSZip.java
.Reading files from a base64 representation of a zipfile (snippet code is public domain):
-----
// TODO :: Need to use other library to open file and convert byte array to base64 representation
JSZip zipper = JSZip.loadBase64(base64Text);
JsArrayString files = zipper.getFiles();
int numFiles = files.length();if (numFiles == 0) {
log("Zipfile is empty");
} else {
for (int i=0; i < numFiles; i++) {
String fileName = files.get(i);
String lowerCaseFileName = fileName.toLowerCase();
JSFile currentFile = zipper.getFile(fileName);
Uint8Array data = currentFile.asUint8Array();
byte[] bytes1 = data.toByteArray();
// Do something with the bytes here !
}
}
-----.Saving binary data as a zipfile (snippet code is public domain):
-----
JSZip z = JSZip.newJSZip();
z.file("README", "This is the content of a readme file");
byte[] data = new byte [] {1,2,3,4,5,6,7,8,9,10};
z.file("mybinaryfile.dat", Uint8Array.createUint8(data), null /*option*/);
Blob generateBlob = z.generateBlob(null);
// This is using the GWT FileSaver Wrapper Library (not part of JSZip)
FileSaver.saveBlob("myzip.zip", generateBlob);
-----## License
This wrapper is Apache Version 2.0 licensed, just as the original https://github.com/akjava/GWTJSZip license was.
## JSZip License
jszip is MIT-LICENSED ziptool for javascript. Full details of the JSZip license are included in the "jszip_LICENSE.markdown" file.
## What does the fork change?
The fork drags in the 'Blob' class from https://github.com/akjava/akjava_gwtlib , which is also Apache Version 2.0 licensed from the same author.
This means that there are no dependencies, so that this library can be used easily without pulling huge libraries like guava.
## Why is the group id 'org.ainslec' instead of 'com.akjava'?
Maven Central rules specify that forks need to use the group id of the person who forked the library. This is not the mainline build of GWTJSZip.