All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.utils.ClasspathResourceFinderBasic Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * 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.                                              *
// ***************************************************************************************************************************
package org.apache.juneau.utils;

import java.io.*;
import java.util.*;

/**
 * Utility class for finding resources for a class.
 *
 * 

* Same as {@link ClasspathResourceFinderSimple}, but first searches the working directory for the file before * looking in the classpath. *
Path traversals outside the working directory are not allowed for security reasons. */ public class ClasspathResourceFinderBasic extends ClasspathResourceFinderSimple { /** * Reusable instance. */ public static final ClasspathResourceFinderBasic INSTANCE = new ClasspathResourceFinderBasic(); @Override /* ClasspathResourceFinder */ public InputStream findResource(Class baseClass, String name, Locale locale) throws IOException { InputStream is = findFileSystemResource(name, locale); if (is != null) return is; return findClasspathResource(baseClass, name, locale); } /** * Workhorse method for retrieving a resource from the file system. * *

* This method can be overridden by subclasses to provide customized handling of resource retrieval from file systems. * * @param name The resource name. * @param locale * The resource locale. *
Can be null. * @return The resource stream, or null if it couldn't be found. * @throws IOException */ protected InputStream findFileSystemResource(String name, Locale locale) throws IOException { if (name.indexOf("..") == -1) { for (String n2 : getCandidateFileNames(name, locale)) { File f = new File(n2); if (f.exists() && f.canRead() && ! f.isAbsolute()) { return new FileInputStream(f); } } } return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy