Package org.fenixedu.bennu.io.domain

Examples of org.fenixedu.bennu.io.domain.GenericFile


        }
    }

    private void writeFileToStream(String url, OutputStream stream) throws IOException {
        if (url.startsWith(File.getFileDownloadPrefix())) {
            GenericFile fileFromURL = FileDownloadServlet.getFileFromURL(url);
            if (fileFromURL != null) {
                InputStream inputStream = fileFromURL.getStream();
                ByteStreams.copy(inputStream, stream);
                inputStream.close();
                stream.close();
            }
View Full Code Here

TOP

Related Classes of org.fenixedu.bennu.io.domain.GenericFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.