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

xmlparser.utils.IO Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package xmlparser.utils;

import java.io.ByteArrayInputStream;
import java.io.InputStreamReader;
import java.nio.charset.Charset;

public enum IO {;

    public static InputStreamReader newStreamReader(final String xml, final Charset charset) {
        return new InputStreamReader(new ByteArrayInputStream(xml.getBytes(charset)), charset);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy