Java Resource Get getResource(String res)

Here you can find the source of getResource(String res)

Description

get Resource

License

Open Source License

Declaration

public static InputStream getResource(String res) throws FileNotFoundException 

Method Source Code

//package com.java2s;
/**/*from  w  ww.j ava2 s .c  om*/
 *  Copyright 2011 Oliver Buchtala
 *
 *   This file is part of ndogen.
 *
 *  ndogen is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  ndogen is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with ndogen.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;

import java.io.InputStream;
import java.net.URISyntaxException;
import java.net.URL;

public class Main {
    public static InputStream getResource(String res) throws FileNotFoundException {
        URL tokensResource = ClassLoader.getSystemClassLoader().getResource(res);
        FileInputStream is;
        try {
            is = new FileInputStream(new File(tokensResource.toURI()));
            return is;
        } catch (URISyntaxException e) {
            throw new RuntimeException(e);
        }
    }
}

Related

  1. getResource(String name)
  2. getResource(String name)
  3. getResource(String name)
  4. getResource(String name, Class neighbor)
  5. getResource(String name, Class caller)
  6. getResource(String resource, Class context)
  7. getResourceAsBytes(String resource)
  8. getResourceAsBytes(String resource)
  9. getResourceAsFile(Class clazz, String resource)