blob: 229bc7db321014182596d1c17d5eaa70297dbb80 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Jens Lukowski/Innoopract - initial renaming/restructuring
* Gerry Kessler/Oracle - copied from org.eclipse.wst.sse.core.internal.encoding.util and modified
*******************************************************************************/
package org.eclipse.jst.jsf.common.metadata.internal;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Locale;
import java.util.ResourceBundle;
import org.eclipse.core.runtime.FileLocator;
/**
* ResourceBundleHelper
*
*/
public class ResourceBundleHelper {
/**
* @param resourceURI
* @return ResourceBundle
* @throws MalformedURLException - may return null
* @throws IOException
*/
public static ResourceBundle getResourceBundle(String resourceURI) throws MalformedURLException, IOException {
return getResourceBundle(resourceURI, Locale.getDefault());
}
/**
* @param resourceURI
* @param targetLocale
* @return ResourceBundle - may return null
* @throws MalformedURLException
* @throws IOException
*/
public static ResourceBundle getResourceBundle(String resourceURI, Locale targetLocale) throws MalformedURLException, IOException {
// try to load bundle from the location specified in the resourceURI
// we make the assumption that the resourceURI points to the local
// file system
int index = resourceURI.lastIndexOf("/"); //$NON-NLS-1$
if (index == -1) {
throw new IllegalArgumentException("Invalid resourceURI"); //$NON-NLS-1$
}
// Below we set 'resourceDirectory' so that it ends with a '/'.
// Here's an excerpt from the ClassLoader Javadoc ...
// Any URL that ends with a '/' is assumed to refer to a directory.
// Otherwise, the URL is assumed
// to refer to a JAR file which will be opened as needed.
//
String resourceDirectory = resourceURI.substring(0, index + 1);
String resourceBundleName = resourceURI.substring(index + 1);
// create a class loader with a class path that points to the resource
// bundle's location
//
URL[] classpath = new URL[1];
classpath[0] = FileLocator.resolve(new URL(resourceDirectory));
ClassLoader resourceLoader = new URLClassLoader(classpath, null);
return ResourceBundle.getBundle(resourceBundleName, targetLocale, resourceLoader);
}
}