What is collections framework?
No Answer is Posted For this Question
Be the First to Post Answer
Can we print null in java?
What is the difference between processes and threads?
what is web.xml?and its use?
I want to re-reach and use an object once it has been garbage collected. How it's possible?
How does static modifier work?
I dont want to use serialzable in java is there any another concept so plz tell me
What is the purpose class.forname method?
What is a reflection package?
What does jre stand for?
What checkbox method allows you to tell if a checkbox is checked?
What is object cloning in Java?
0 Answers SwanSoft Technologies,
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }