码迷,mamicode.com
首页 > 编程语言 > 详细

Load resources from classpath in Java--reference

时间:2014-06-08 22:20:57      阅读:371      评论:0      收藏:0      [点我收藏+]

标签:c   class   java   a   http   int   

In general classpath is the path where JVM can find .class files and resources of your application and in this tutorial we will see how to load resources such as .properties files that are on classpath.

Class‘ getResourceAsStream()

One way to load a resource is with getResourceAsStream() method of Class class.As an example consider the case where a .properties file is at a folder named resources.We could use getResourceAsStream method as shown in the below snippet.

 

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

public class ResourceLoader {

	public static void main(String args[]) throws IOException{
	
		InputStream resourcesStream = ResourceLoader.class.getResourceAsStream("/resources/resources.properties");
		Properties properties = new Properties();
		properties.load(resourcesStream);
		System.out.println(properties.get("property.name"));
	}
	
}

Using ClassLoader‘s getResourceAsStream()

Another way to load a resource is by using Classloader‘s getResourceAsStream() method.As an example consider the below snippet:

 

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

public class ResourceLoader {

	public static void main(String args[]) throws IOException{
	
		InputStream resourcesStream = ResourceLoader.class.getClassLoader().getResourceAsStream("resources/resources.properties");
		Properties properties = new Properties();
		properties.load(resourcesStream);
		System.out.println(properties.get("property.name"));
	}
	
}

Class‘  vs ClassLoader‘s getResourceAsStream()

Difference between Class‘ and ClassLoader‘s getReourceAsStream() is in the way the path-to-resrouce is defined.In the case of  Class class getResourcesAsStream() accept‘s either the relative or the absoulute path of the resource.On the other hand ClassLoader‘s getResourceAsStream() method accept‘s only the absolute path to the resource and because of this,if  we used "/resources/resources.properties" wouldn‘t be found and getResourceAsStream() would return null

http://www.java-only.com/LoadTutorial.javaonly?id=118

 

Load resources from classpath in Java--reference,布布扣,bubuko.com

Load resources from classpath in Java--reference

标签:c   class   java   a   http   int   

原文地址:http://www.cnblogs.com/davidwang456/p/3775549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!