tem como fazer isso!?
public class Registry
{
public static void main(String[] args)
{
try
{
Process proc = Runtime.getRuntime().exec("regedit /S /C");
proc.waitFor();
proc.destroy();
}
catch(Throwable th)
{ th.printStackTrace(); }
}
public static String REGFILE ="regfile.reg";
}
porque isso não funciona?
não dá erro nem nada…