
gnu.util.Classpath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of escher Show documentation
Show all versions of escher Show documentation
Escher is a collection of libraries for X Window System written purely in Java.
The newest version!
package gnu.util; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.StringTokenizer; /** Classpath utility. */ public class Classpath { public static final String CLASSPATH = System.getProperty ("java.class.path"); public static final File [] CLASSPATH_DIRS; static { StringTokenizer st = new StringTokenizer (CLASSPATH, File.pathSeparator); int count = st.countTokens (); CLASSPATH_DIRS = new File [count]; for (int i = 0; i
if not found */ public static File find_file (File [] dirs, String name) { for (int i=0; inull
© 2015 - 2025 Weber Informatics LLC | Privacy Policy