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

io.github.robertograham.rleparser.helper.FileHelper Maven / Gradle / Ivy

The newest version!
package io.github.robertograham.rleparser.helper;

import java.io.IOException;
import java.net.URI;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;

public class FileHelper {

    public static List getFileAsStringList(URI uri) {
        try {
            return Files.readAllLines(Paths.get(uri));
        } catch (IOException e) {
            return new ArrayList<>();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy