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

com.github.alexvictoor.weblogback.FileReader Maven / Gradle / Ivy

The newest version!
package com.github.alexvictoor.weblogback;

import java.util.Scanner;

public class FileReader {

    public String readFileFromClassPath(String classPath) {
        return new Scanner(getClass().getResourceAsStream(classPath)).useDelimiter("\\Z").next();

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy