Ignore:
Timestamp:
2017-04-06T21:03:08+12:00 (7 years ago)
Author:
ak19
Message:

GLI's DownloadPane.java now also uses SafeProcess.java when running a perl process from Java.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/util/SafeProcess.java

    r31583 r31585  
    2323    //static Logger logger = Logger.getLogger(org.greenstone.util.SafeProcess.class.getName());
    2424
     25    // input to SafeProcess and initialising it
    2526    private String command = null;
    2627    private String[] command_args = null;
     
    2930    private String inputStr = null;
    3031
     32    // output from running SafeProcess.runProcess()
    3133    private String outputStr = "";
    3234    private String errorStr = "";
    33 
    3435    private int exitValue = -1;
    3536
     
    5253    }
    5354
     55    // cmd string version
    5456    public SafeProcess(String cmdStr)
    5557    {
Note: See TracChangeset for help on using the changeset viewer.