
import java.awt.Desktop;
import java.io.File;
import javax.media.opengl.GLProfile;

class Test {
    public static void main(String[] args) {
        try {
            System.setProperty("jogamp.gluegen.UseTempJarCache", "false");
            GLProfile.initSingleton();
            Desktop.getDesktop().open(new File("C:\\"));
        } catch(Exception ex) {
            ex.printStackTrace();
        }
    }
}
