Re: Problem with file.listFiles() of File class??
Posted By:
Simon_Ablett
Posted On:
Thursday, May 15, 2003 05:46 AM
I would not advise trying to mix-and-match the core jar files from different Java versions. What you should do is wrap the call to 'File.listFiles()' inside another class / method and then have different implementations of this for each of the different runtime environments. Obviously, this will cause you some work now but will save you a lot of hassle in the future.
Regards.