An open API service indexing awesome lists of open source software.

https://github.com/openmole/xz-scala

Scala facade of the tukaani.org/xz-java library.
https://github.com/openmole/xz-scala

Last synced: about 1 year ago
JSON representation

Scala facade of the tukaani.org/xz-java library.

Awesome Lists containing this project

README

          

# xz-scala
Scala facade of the tukaani.org/xz-java library.

## Compress a File
```scala
import fr.iscpif.xz._

val inputFile = new File(path/to/xzFile)
val xzFile = new File(path/to/output)

inputFile.compressXZ(xzFile)
```

## Extract a XZ file

```scala
import fr.iscpif.xz._

val xzfile = new File(path/to/xzFile)
val outputFile = new File(path/to/outputFile)

xzfile.extractXZ(outputFile)
```