All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.julielab.xmlData.cli.Test Maven / Gradle / Ivy

package de.julielab.xmlData.cli;

import java.io.*;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.zip.ZipFile;

public class Test {
    public static void main(String args[]) throws IOException {
        try (FileSystem fs = FileSystems.newFileSystem(Paths.get("myfs.zip"), null)) {

            OutputStream os = fs.provider().newOutputStream(fs.getPath("mow/entry.txt"), StandardOpenOption.CREATE, StandardOpenOption.WRITE);
            try (BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(os))) {
                bw.write("Here is content!");
            }
        }
        System.out.println("Done");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy