/*
* 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 ...
-
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...
-
Hi All, Here I write a program for Email with an attached excel document using PHP. Also I design dynamic table for maintaining c...
No comments:
Post a Comment