Java Resource Load getResourceAsStream(final String name)

Here you can find the source of getResourceAsStream(final String name)

Description

Get resource as stream in privileged mode.

License

Open Source License

Parameter

Parameter Description
key a parameter
def a parameter

Declaration

public static InputStream getResourceAsStream(final String name) 

Method Source Code


//package com.java2s;
/*//from w w  w.  j a va2  s .  com
 * Copyright (C) 2003-2011 eXo Platform SAS.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.InputStream;

public class Main {
    /**
     * Get resource as stream in privileged mode.
     * 
     * @param key
     * @param def
     * @return
     */
    public static InputStream getResourceAsStream(final String name) {

        return Thread.currentThread().getContextClassLoader().getResourceAsStream(name);

    }
}

Related

  1. getResourceAsStream(Class clazz, String fileName)
  2. getResourceAsStream(Class clazz, String resource)
  3. getResourceAsStream(Class clazz, String resourceName)
  4. getResourceAsStream(Class testClass, String resource)
  5. getResourceAsStream(final String fileName, ClassLoader classLoader)
  6. getResourceAsStream(final String resourceName, final Class caller)
  7. getResourceAsStream(final String resourceName, final Class caller)
  8. getResourceAsStream(Object context, String resourceName)
  9. getResourceAsStream(Object o, String resource)