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:
- Is there any particular reason why this class is marked package private?
- Are there any dangers of accessing it via reflection? (Other than performance hit, that is.)
canonicalize,normalize,resolveetc. – missingfaktor Jun 2 '12 at 11:24canonicalizeis included as a method ofFile. Bothnormalizeandresolveare invoked during the construction ofFileinstances. – Jeffrey Jun 2 '12 at 11:40File(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