/*
* Open Notepad Application using Java
*/
import java.io.File;
public class pdf {
public static void main(String[] args) {
try {
Process p = Runtime.getRuntime().exec("notepad"); //Process starts notepad
p.waitFor();
System.out.println("Done");
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
output:
~~~~~~~
Done
Note: it will open a notepad after the execution
Subscribe to:
Post Comments (Atom)
Backup files to google drive using PHP coding
Dear All, To backup files to Google Drive using PHP coding, you can use the Google Drive API and the Google Client Library for PHP. Here...
-
Dear All, 1.What is the difference between == and === in PHP? == is a comparison operator that checks for equality of values, while === is ...
-
Hi All, Here I write a program for Exchange Sort Using Java. The exchange sort compares each element of an array and swap those elemen...
-
Hi All, Welcome to the TECHIE SNACKS world. The main theme of this blog is sharing the Knowledge in various domains and platforms o...
No comments:
Post a Comment