Helper method to execute shell command : UNIX Win32 « Development Class « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » UNIX Win32Screenshots 
Helper method to execute shell command
   
/*
 * Copyright (c) 1998-2002 Carnegie Mellon University.  All rights
 * reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
 * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
 * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */


import java.io.*;

public abstract class Exec {


    public static Process exec (String[] cmdarraythrows IOException {
        return exec (cmdarray, null, null);
    }

    public static Process exec (String[] cmdarray, String[] envpthrows IOException {
        return exec (cmdarray, envp, null);
    }

    public static Process exec (String[] cmdarray, String[] envp, File directorythrows IOException {
  return 
      isWindows ()
      ? execWindows (cmdarray, envp, directory)
      : execUnix (cmdarray, envp, directory);
    

    /*
     * Unix
     */

    static Process execUnix (String[] cmdarray, String[] envp, File directorythrows IOException {
        // instead of calling command directly, we'll call the shell to change
        // directory and set environment variables.

        // start constructing the sh command line.
        StringBuffer buf = new StringBuffer ();

        if (directory != null) {
            // change to directory
            buf.append ("cd '");
            buf.append (escapeQuote (directory.toString ()));
            buf.append ("'; ");
        }

        if (envp != null) {
            // set environment variables.  Quote the value (but not the name).
            for (int i = 0; i < envp.length; ++i) {
                String nameval = envp[i];
                int equals = nameval.indexOf ('=');
                if (equals == -1)
                    throw new IOException ("environment variable '" + nameval 
                                           "' should have form NAME=VALUE");
                buf.append (nameval.substring (0, equals+1));
                buf.append ('\'');
                buf.append (escapeQuote (nameval.substring (equals+1)));
                buf.append ("\' ");
            }
        }
        
        // now that we have the directory and environment, run "which" 
        // to test if the command name is found somewhere in the path.
        // If "which" fails, throw an IOException.
        String cmdname = escapeQuote (cmdarray[0])
        Runtime rt = Runtime.getRuntime ();
        String[] sharray = new String[] { "sh""-c", buf.toString () " which \'" + cmdname + "\'" };
        Process which = rt.exec (sharray);
        try {
            which.waitFor ();
        catch (InterruptedException e) {
            throw new IOException ("interrupted");
        }

        if (which.exitValue () != 0
            throw new IOException ("can't execute " + cmdname + ": bad command or filename")

        // finish in 
        buf.append ("exec \'");
        buf.append (cmdname);
        buf.append ("\' ");

        // quote each argument in the command
        for (int i = 1; i < cmdarray.length; ++i) {
            buf.append ('\'');
            buf.append (escapeQuote (cmdarray[i]));
            buf.append ("\' ");
        }

        System.out.println ("executing " + buf);
        sharray[2= buf.toString ();
        return rt.exec (sharray);
    }

    static String escapeQuote (String s) {
        // replace single quotes with a bit of magic (end-quote, escaped-quote, start-quote) 
        // that works in a single-quoted string in the Unix shell
        if (s.indexOf ('\''!= -1) {
          System.out.println ("replacing single-quotes in " + s);
            s = s.replace("'""'\\''");
            System.out.println ("to get " + s);
        }
        return s;
    }

    /*
     * Windows
     */

     static boolean isWindows () {
        String os = System.getProperty ("os.name");
  return (os != null && os.startsWith ("Windows"));
     }

     static boolean isJview () {
        String vendor = System.getProperty ("java.vendor");
  return (vendor != null && vendor.startsWith ("Microsoft"));
     }

    static Process execWindows (String[] cmdarray, String[] envp, File directorythrows IOException {
  if (envp != null || directory != null) {
      if (isJview ())
    // jview doesn't support JNI, so can't call putenv/chdir
    throw new IOException 
        ("can't use Exec.exec() under Microsoft JVM");
      
      if (!linked) {
    try {
        System.loadLibrary ("win32exec");
        linked = true;
    catch (LinkageError e) {
        throw new IOException ("can't use Exec.exec(): "
             + e.getMessage ());
    }
      }
      
      if (envp != null) {
    for (int i = 0; i < envp.length; ++i)
        putenv (envp[i]);
      }
      
      if (directory != null)
    chdir (directory.toString ());
  }

        return Runtime.getRuntime ().exec (cmdarray);
    }

    static boolean linked = false// true after System.loadLibrary() is called
    static native boolean putenv (String env);
    static native boolean chdir (String dir);
}

   
    
    
  
Related examples in the same category
1. Java 1.5 (5.0) Changes to the API: ProcessBuilder.
2. How to execute a program from within Java
3. How to execute an external program How to execute an external program
4. Show how to use exec to pass complex args
5. ExecDemo shows how to execute an external program 2
6. ExecDemo shows how to execute an external program
7. Execute an external program read its output, and print its exit status
8. Create some temp files, ls them, and rm them
9. ExecDemoHelp shows how to use the Win32 start command
10. ExecDemo shows how to execute an external program and read its output
11. ExecDemo shows how to execute an external program and read its output 3
12. JVM Invocation test
13. UNIX getopt() system call
14. Unix Crypt
15. Handles program arguments like Unix getopt()
16. dealing with Excel dates
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.