Thursday, November 8

Open Notepad Application using JAVA

/*
* 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

No comments:

Post a Comment

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...