What is void in java?
No Answer is Posted For this Question
Be the First to Post Answer
can anyone explain me the concept of autoboxing?
If there is no implementation of MARKER INTERFACE in java. Then how compiler come to know about specification.
What is the difference between math floor and math round?
Why are pointers not secure?
Explain yield() method in thread class ?
what is purpose of collections.unmodified() method..?
How do you clear an arraylist in java?
Difference between the paint() and repaint() methods?
Is null or empty java?
What are the different data types in java?
What are the advantages of 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"); } }