How to do a true java ping from windows?
No Answer is Posted For this Question
Be the First to Post Answer
What is the life cycle of Thread ?
12 Answers HCL, Varnar Softech,
What are jee technologies?
What is thread safe 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"); } }
Which object oriented concept is achieved by using overloading and overriding?
What are static initalizers in java ?
What is the use of toarray () in java?
How could Java classes direct program messages to the system console, but error messages, say to a file?
How does linkedhashmap work in java?
Can we define private and protected modifiers for the members in interfaces?
how can i connect to database in a applet ?
What is the advantage of functional interface in java 8?