Java Resource File getFileResource(String resourceName)

Here you can find the source of getFileResource(String resourceName)

Description

Returns a File from a resource.

License

Apache License

Declaration

public static File getFileResource(String resourceName) 

Method Source Code


//package com.java2s;
/*//from  w ww  .  j av  a 2s .  c  o m
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.File;
import java.net.URISyntaxException;

import com.google.common.io.Resources;

public class Main {
    /** Returns a {@link File} from a resource. */
    public static File getFileResource(String resourceName) {
        try {
            return new File(Resources.getResource(resourceName).toURI());
            // return new File(Utils.class.getClassLoader().getResource(resourceName).toURI());
        } catch (final URISyntaxException e) {
            throw new RuntimeException(e);
        }
    }
}

Related

  1. getFileByResources(String fileName, Class clazz)
  2. getFileFromRelativeResource(final Class type, final String relativeResourceName)
  3. getFileFromSystemResources(String fileName)
  4. getFilename(Class clazz, String resource)
  5. getFileName(final Object resource)
  6. getInputStream(String resourceOrFile, Class cls)
  7. getInputStreamForResource(String s)
  8. getLastModificationForResource(String resourceId)
  9. getLastModified(final String resourceName)