Java Resource Get getResourceAsFile(Class sourceClass, String reference)

Here you can find the source of getResourceAsFile(Class sourceClass, String reference)

Description

get Resource As File

License

Open Source License

Declaration

public static File getResourceAsFile(Class sourceClass, String reference) throws URISyntaxException 

Method Source Code

//package com.java2s;
/*   //ww w .j a va2  s  . c o m
*    Copyright (C) 2013  facetoe - facetoe@ymail.com
*
*    This program 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 2 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 General Public License for more details.
*
*    You should have received a copy of the GNU General Public License along
*    with this program; if not, write to the Free Software Foundation, Inc.,
*    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

import java.io.*;
import java.net.URISyntaxException;

public class Main {
    public static File getResourceAsFile(Class sourceClass, String reference) throws URISyntaxException {
        return new File(sourceClass.getResource(reference).toURI());
    }
}

Related

  1. getResource(String resource, Class context)
  2. getResourceAsBytes(String resource)
  3. getResourceAsBytes(String resource)
  4. getResourceAsFile(Class clazz, String resource)
  5. getResourceAsFile(Class klass, String resource)
  6. getResourceAsFile(Class clazz, String fn)
  7. getResourceAsFile(Class clazz, String name)
  8. getResourceAsFile(Class clazz, String rscName)
  9. getResourceAsFile(final Class clazz, final String name)