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

com.netgrif.application.engine.resource.domain.ExternalResource Maven / Gradle / Ivy

package com.netgrif.application.engine.resource.domain;

import org.springframework.core.io.InputStreamResource;
import org.springframework.core.io.Resource;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

public class ExternalResource {

    public Resource getResource(String filePath) {
        try {
            File file = new File(filePath);
            InputStream in = new FileInputStream(file);
            return new InputStreamResource(in);
        } catch (IOException ex) {
            throw new RuntimeException(ex);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy