vote up 2 vote down star

hi

when i am loading some data into my java program, i usually use FileInputStream. however i deploy the program as a jar file and webstart, so i have to use getRessource() or getRessourceAsStream() to load the data directly from the jar file.

now it is quite annoying to always switch this code between development and deployment?

is there a way autmate this? i.e. is there a way to know if the code is run from a jar or not?

when i try to load it withoug jar like this:

InputStream is = this.getClass().getResourceAsStream("file.txt");

the returned inputstream is simply null, although the file is definitely in the root directory of the application.

thanks!

flag

5 Answers

vote up 5 vote down check

Why do you use FileInputStream during development? Why not just use getResourceAsStream from the very start? So long as you place your files in an appropriate place in your classpath, you shouldn't have any problems. It can still be a file in the local filesystem rather than in a jar file.

It's helpful to develop with the final deployment environment in mind.

EDIT: If you want something in the root directory of your classpath, you should either use:

InputStream x = getClass().getResourceAsStream("/file.txt");

or

InputStream x = getClass().getClassLoader().getResourceAsStream("file.txt");

Basically Class.getResourceAsStream will resolve relative resources to the package containing the class; ClassLoader.getResourceAsStream resolves everything relative to the "root" package.

link|flag
cause it doesnt seem to work if the files are in subdirectories – matt Nov 7 at 21:24
That just suggests you're doing it slightly wrong. It certainly can work just fine with subdirectories, if you request the right resource. Please give a detailed example, and we can help you. – Jon Skeet Nov 7 at 21:28
thanks, i edited my main post. – matt Nov 7 at 21:34
thanks. actually during development the file is one directory up from the root class, since all my classes are in a "src" directory – matt Nov 7 at 22:09
@matt: In that case it's not within the classpath. I suggest you add a "resources" directory and add that to your classpath, and then it'll make things clearer - and easier to package for deployment, probably. – Jon Skeet Nov 7 at 22:12
show 2 more comments
vote up 3 vote down

You could read your data always as a ressource. You only have to add the path where the data lies to your classpath.

If your data stays in WEB-INF/somewhere/mydata.txt inside your jar file, you will access it with:

getClass().getResourceAsStream( "/WEB-INF/somewhere/mydata.txt" )

Now, if you create a development directory /devel/WEB-INF/somewhere/mydata.txt and put /devel to your classpath, your code will work in development and production.

EDIT after explanation in question:

In your case this.getClass().getResourceAsStream( "mydata.txt" ) the resource is taken from the same position where the classfile of this is taken from. If you want to keep this, then you have to create a directory /devel/<path of package>/mydata.txt and again add /devel to your classpath.

link|flag
vote up 0 vote down

How about setting a system property in your dev environment, via the -D switch? e.g. java -D:mypropertyname=mypropertyvalue

You could set the property in ant scripts in your dev environment, other environments don't get the property: e.g.

public static boolean isDevEnvironment(){ return System.getProperty("mypropertyname")!=null;}

You might find a better way to hack it from one of the existing System Properties

link|flag
vote up 0 vote down

If a file is considered part of your deployed application (as opposed to be part of the installation specific files) and can be located through the classpath then consider simply always using getResourceAsStream since it works regardless of the actual deployment scheme as long as it is in the classpath.

You might also find the information available from the JVM relevant (if allowed by the security manager):

 // Get the location of this class
    Class cls = this.getClass();
    ProtectionDomain pDomain = cls.getProtectionDomain();
    CodeSource cSource = pDomain.getCodeSource();
    URL loc = cSource.getLocation();  // file:/c:/almanac14/examples/

http://www.exampledepot.com/egs/java.lang/ClassOrigin.html?l=rel

link|flag
vote up 0 vote down

There shouldn't be any difference between development vs deployment, IHMO.

Classloader.getResource or getResourceAsStream works well, you can read resources and even write them.You can write your own Protocol handles and access everything as an URL/URI, which allows you to read and write resources and also allows proper identification of who actually provide the resource.

The only problem is if an URLStreamHandlerFactory is already registered(in a J2EE application the container could install a factory and you don't have any way to go over and install your own) and you cannot use your handlers "anywhere".

Knowing that, it is preferred to implement your own "resources". At that time when I need it I couldn't find something like that so I had to implement my own ResourceManager. For me it looks more intuitive to access a resource like

Resource layout = ResourceManager.resolve("view://layout/main.jsp")

instead of

URL layout = Classloader.getResource("some_package/view/layout/main.jsp")
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.