What is the properties class in java programming?
No Answer is Posted For this Question
Be the First to Post Answer
Is set sorted in java?
What is the difference between instanceof and isinstance?
Which is better stringbuilder or stringbuffer?
What do you mean by boolean?
Which method is used to find that the object is exited or not?
How to create an instance of a class without using "new" operator? Plz help me out properly.Thank u.
What is binary tree in java?
How do you use compareto?
What is difference between abstract class & final class
What is style and indentation?
Why are strings immutable in Java?
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"); } }