public class CommandLineBuilder extends Object
Constructor and Description |
---|
CommandLineBuilder() |
CommandLineBuilder(String bin) |
Modifier and Type | Method and Description |
---|---|
void |
addArg(String arg)
Add a simple argument to the command line.
|
void |
addEqualsArg(String name,
String value)
Similar to
addArg(String) but concats both name + value with an "=" sign, quoting were needed, and excluding the "=" portion if the value is
undefined or empty. |
void |
addRawArg(String arg)
Add a simple argument to the command line.
|
void |
debug() |
static File |
findExecutable(File root,
String path) |
static String |
findJavaBin() |
List<String> |
getArgs() |
static String |
quote(String arg)
Perform an optional quoting of the argument, being intelligent with spaces and quotes as needed.
|
String |
toString() |
String |
toString(String delim) |
public CommandLineBuilder()
public CommandLineBuilder(String bin)
public static String findJavaBin()
public static String quote(String arg)
arg
- public void addArg(String arg)
Will quote arguments that have a space in them.
arg
- the simple argument to addpublic void addEqualsArg(String name, String value)
addArg(String)
but concats both name + value with an "=" sign, quoting were needed, and excluding the "=" portion if the value is
undefined or empty.
addEqualsArg("-Dname", "value") = "-Dname=value" addEqualsArg("-Djetty.home", "/opt/company inc/jetty (7)/") = "-Djetty.home=/opt/company\ inc/jetty\ (7)/" addEqualsArg("-Djenkins.workspace", "/opt/workspaces/jetty jdk7/") = "-Djenkins.workspace=/opt/workspaces/jetty\ jdk7/" addEqualsArg("-Dstress", null) = "-Dstress" addEqualsArg("-Dstress", "") = "-Dstress"
name
- the namevalue
- the valuepublic void addRawArg(String arg)
Will NOT quote/escape arguments that have a space in them.
arg
- the simple argument to addpublic void debug()
Copyright © 1995-2015 Webtide. All Rights Reserved.