public static void main(String[] args) throws Exception{
// TODO Auto-generated method stub
Runtime rt = Runtime.getRuntime();
while(true)
{
Process p1 = rt.exec("C:/Program Files (x86)/Notepad++/notepad++.exe E:/dashreports/licence.txt");
Thread.sleep(5000);
Process p2 = rt.exec("taskkill /im notepad++.exe");
Thread.sleep(5000);
}
}
// TODO Auto-generated method stub
Runtime rt = Runtime.getRuntime();
while(true)
{
Process p1 = rt.exec("C:/Program Files (x86)/Notepad++/notepad++.exe E:/dashreports/licence.txt");
Thread.sleep(5000);
Process p2 = rt.exec("taskkill /im notepad++.exe");
Thread.sleep(5000);
}
}