Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have read this post How to convert InputStream to FileInputStream on converting a InputStream into a FileInputStream. However, the answer does not work if you are using a resource that is in a jar file. Is there another way to do it.

I need to do this to get the FileChannel from a call to Object.class.getResourceAsStream(resourceName);

share|improve this question
2  
Why do you need it? In general, there may not be such an object. – PaĆ­lo Ebermann Mar 18 '11 at 16:36
1  
OK, I'll bite: why do you need the FileChannel ? – Pointy Mar 18 '11 at 16:39
There is a copy function that I am trying to use. – user489041 Mar 18 '11 at 17:00
Note that addition to FileChannel.transferTo() -- which requires the source to be a FileChannel -- there is also FileChannel.transferFrom(), which requires the destination to be so. – Andy Thomas-Cramer Mar 18 '11 at 17:53

3 Answers

up vote 4 down vote accepted

You can't, without basically writing to a file. Unless there's a file, there can't be a FileInputStream or a FileChannel. If at all possible, make sure your code is agnostic to the input source - design it in terms of InputStream and ByteChannel (or whatever kind of channel is most appropriate).

share|improve this answer

From the InputStream returned by Class.getResourceAsStream(), you can make a Channel with Channels.newChannel( InputStream ).

This is not the FileChannel you requested, but it is still a Channel. Is it sufficient to meet your needs?

share|improve this answer
Interesting, let me try this out – user489041 Mar 18 '11 at 17:01

If you really need a file and you know that the resource is not inside a jar or loaded remotely, then you can use getResource instead.

URL resourceLocation = Object.class.getResource(resourcePath);
if (resourceLocation == null) { throw new FileNotFoundException(resourcePath); }
File myFile = new File(resourceLocation.toURI());

If you don't absolutely need a FileChannel or can't make assumptions about how your classpath is laid out, then Andy Thomas-Cramer's solution is probably the best.

share|improve this answer
Thanks Mike, but the resource I need will be inside a JAR file. – user489041 Mar 18 '11 at 17:11
In that case, you can't do it without mounting the jar as a file system somehow. A file channel presupposes a file. cheers – Mike Samuel Mar 18 '11 at 18:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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