|
Generated by JDiff |
||||||||
| PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES | |||||||||
This file contains all the changes in documentation in the packagecom.itextpdf.commons.utilsas colored differences. Deletions are shownlike this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a tag will cause all subsequent paragraphs to be displayed differently.
Gets either java property or environment variable with given name. @param name the name of either java property or environment variable.Class SystemUtil, StringBuilder runProcessAndCollectErrors(String, String)@return property or variable value or null if there is no such.
Executes the specified command and arguments in a separate process with the specified environment and working directory and returns output errors as a string. This method checks that exec is a valid operating system command. Which commands are valid is system-dependent, but at the very least the command must be a non-empty and non-null. The subprocess inherits the environment settings of the current process. A minimal set of system dependent environment variables may be required to start a process on someClass SystemUtil, int runProcessAndGetExitCode(String, String)operatingoperating systems. The working directory of the new subprocess is specified by workingDirPath. If dir is null, the subprocess inherits the current working directory of the current process. @param execPath a specified system command. @param params a parameters for the specifed system command. @return subprocess errors as {@code StringBuilder}. @throws IOException if any I/O error occurs.
Executes the specified command and arguments in a separate process with the specified environment andClass SystemUtil, int runProcessAndGetExitCode(String, String, String)workingworking directory. This method checks that exec is a valid operating system command. Which commands are valid is system-dependent, but at the very least the command must be a non-empty and non-null. The subprocess inherits the environment settings of the current process. A minimal set of system dependent environment variables may be required to start a process on someoperatingoperating systems. The working directory of the new subprocess is the current working directory of the current process. @param exec a specified system command. @param params a parameters for the specifed system command. @return exit code. @throws IOException if any I/O error occurs. @throws InterruptedException if process was interrupted.
Executes the specified command and arguments in a separate process with the specified environment andClass SystemUtil, String runProcessAndGetOutput(String, String)workingworking directory. This method checks that exec is a valid operating system command. Which commands are valid is system-dependent, but at the very least the command must be a non-empty and non-null. The subprocess inherits the environment settings of the current process. A minimal set of system dependent environment variables may be required to start a process on someoperatingoperating systems. The working directory of the new subprocess is specified by workingDirPath. If dir is null, the subprocess inherits the current working directory of the current process. @param exec a specified system command. @param params a parameters for the specifed system command. @param workingDirPath working dir for subprocess. @return exit code. @throws IOException if any I/O error occurs. @throws InterruptedException if process was interrupted.
Executes the specified command and arguments in a separate process with the specified environment and working directory and returns output as a string. This method checks that exec is a valid operating system command. Which commands are valid is system-dependent, but at the very least the command must be a non-empty and non-null. The subprocess inherits the environment settings of the current process. A minimal set of system dependent environment variables may be required to start a process on someClass SystemUtil, ProcessInfo runProcessAndGetProcessInfo(String, String)operatingoperating systems. The working directory of the new subprocess is specified by workingDirPath. If dir is null, the subprocess inherits the current working directory of the current process. @param command a specified system command. @param params a parameters for the specifed system command. @return subprocess output result. @throws IOException if any I/O error occurs.
Executes the specified command and arguments in a separate process with the specified environment and working directory and returns process info. This method checks that exec is a valid operating system command. Which commands are valid is system-dependent, but at the very least the command must be a non-empty and non-null. The subprocess inherits the environment settings of the current process. A minimal set of system dependent environment variables may be required to start a process on someClass SystemUtil, boolean runProcessAndWait(String, String)operatingoperating systems. The working directory of the new subprocess is specified by workingDirPath. If dir is null, the subprocess inherits the current working directory of the current process. @param command a specified system command. @param params a parameters for the specifed system command. @return process info instance. @throws IOException if any I/O error occurs. @throws InterruptedException if process was interrupted.
Executes the specified command and arguments in a separate process with the specified environment andClass SystemUtil, boolean runProcessAndWait(String, String, String)workingworking directory. This method checks that exec is a valid operating system command. Which commands are valid is system-dependent, but at the very least the command must be a non-empty and non-null. The subprocess inherits the environment settings of the current process. A minimal set of system dependent environment variables may be required to start a process on someoperatingoperating systems. The working directory of the new subprocess is the current working directory of the current process. @param exec a specified system command. @param params a parameters for the specifed system command. @return true if subprocess was successfully executed, false otherwise. @throws IOException if any I/O error occurs. @throws InterruptedException if process was interrupted.
Executes the specified command and arguments in a separate process with the specified environment andworkingworking directory. This method checks that exec is a valid operating system command. Which commands are valid is system-dependent, but at the very least the command must be a non-empty and non-null. The subprocess inherits the environment settings of the current process. A minimal set of system dependent environment variables may be required to start a process on someoperatingoperating systems. The working directory of the new subprocess is specified by workingDirPath. If dir is null, the subprocess inherits the current working directory of the current process. @param exec a specified system command. @param params a parameters for the specifed system command. @param workingDirPath working dir for subprocess. @return true if subprocess was successfully executed, false otherwise. @throws IOException if any I/O error occurs. @throws InterruptedException if process was interrupted.