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

I came across this class java.io.FileSystem and noticed it has many methods that I currently need in my project. However the class is package-private, and so I am accessing the needed methods using reflection.

Questions:

  1. Is there any particular reason why this class is marked package private?
  2. Are there any dangers of accessing it via reflection? (Other than performance hit, that is.)
share|improve this question
3  
I am curious to know what methods you are hoping to use. – pd40 Jun 2 '12 at 11:22
@pd40, canonicalize, normalize, resolve etc. – missingfaktor Jun 2 '12 at 11:24
1  
@missingfaktor Oh I see, well the Java6 files API is basically useless, so I'd go with an external dependency then or use Java7 - the new API works fine. – Voo Jun 2 '12 at 11:37
1  
@missingfaktor canonicalize is included as a method of File. Both normalize and resolve are invoked during the construction of File instances. – Jeffrey Jun 2 '12 at 11:40
2  
check the source of File (search for the methods you need to use). All are exposed somehow, so you don't need to use FileSystem directly. – mata Jun 2 '12 at 11:56
show 12 more comments

3 Answers

up vote 7 down vote accepted
  1. This class is package private because SUN (and by extension, Oracle) believe that the methods of this platform-dependent class are likely to undergo significant change in the future, and therefore must not be accessible directly. All implementations of this abstract class are in native code; Java programmers should not be able to create their own.

  2. The biggest danger of using a hidden class through reflection is not the performance, but a very real possibility that its methods or even the entire class would disappear in the next upgrade of the JDK, no matter how minor. Non-public APIs are, well, non-public; changing them is fair game even in a maintenance release, so you have only yourself to blame if your program stops working after what seemed like a routine JDK update.

share|improve this answer
Well by now we can obviously eliminate #1 and to some degree #2 as well (at least as long Oracle doesn't remove the old File classes for backcomp.. and they've not even removed typos from 1.0 so far) – Voo Jun 2 '12 at 12:15

Is there any particular reason why this class is marked package private?

Yes. java.io.FileSystem is not part of the Java API. There is no guarantee how and if it will work. It might be removed or changed in next versions. In fact it's most likely missing in every Java implementation other than Oracle's.

java.io.File uses this class internally, so it should expose most of its functionality in one way or another.

Are there any dangers of accessing it via reflection? (Other than performance hit, that is.)

You are avoiding SecurityManager so it won't work with that.

share|improve this answer
Can u tell me how this FileSystem class gets it native implementation?Also where can i find them?Thanks – user1198898 Jun 9 '12 at 9:05
@user1198898 If you are interested how things are implemented, you need to examine jvm source. For example here is OpenJDK's implementation for unix systems. – Banthar Jun 9 '12 at 9:36
Thanks ! Also appreciate if u could point out any resource to begin writing native codes using jni . I'm guessing native means c or c++ – user1198898 Jun 9 '12 at 16:01

Is there any particular reason why this class is marked package private?

The reasons it is package private is to tell you that it is not an API you should use. The standard reason for doing this is so that the Java team is free to change the API in future releases. A secondary reason may be that there are methods in the API that have restrictions / limitations that make them unsuitable for general use. For instance, there might be security implications, or a risk that your calls will "break" something else. Or the methods might just be too gnarly to explain in the javadoc.

Are there any dangers of accessing it via reflection?

The reasons I listed above also apply if you use the methods reflectively.

share|improve this answer
I know the general reasoning behind marking classes package private. I want to know what the specific reasons are because of which this particular class was marked package private. After reading thru the source, I think it'd've been okay to make it public. – missingfaktor Jun 2 '12 at 11:51
The designers and implementation team apparently disagree with you. None of them are likely to be answering here, and I doubt that your vote will change their mind. Voting to close. – duffymo Jun 2 '12 at 11:52
@duffymo, closing on what grounds? – missingfaktor Jun 2 '12 at 11:53
3  
@missingfaktor - On the grounds (I imagine) that you are turning this into a non-constructive debate. – Stephen C Jun 2 '12 at 11:57
1  
@Stephen Well it shouldn't be forgotten that a) the File API was always considered pretty horrible, b) the Java designers did agree with that conclusion enough to make a new one and c) the new version in Java7 does make lots of those methods public and easily accessible. So basically they did agree with him ;) – Voo Jun 2 '12 at 12:17
show 7 more comments

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.