Examples of subkeys()


Examples of ca.beq.util.win32.registry.RegistryKey.subkeys()

    if(r.hasValue("InstallDir")) {
       RegistryValue v = r.getValue("InstallDir");
       System.out.println(v.toString() + " ... " + v.getData());
    }
    if(r.hasSubkeys()) {
       Iterator i = r.subkeys();
       while(i.hasNext()) {
          RegistryKey x = (RegistryKey)i.next();
          System.out.println(x.toString());
       } // while
    } // if
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.