我想在运行时执行期间调用java keytool,提供动态参数。 这是在Windows下运行的,但不是在Linux(Ubuntu)下使用相同的Java 1.6.0:
File f = new File("mykey.jks");
StringBuilder command = new StringBuilder();
command.append(System.getProperty("java.home")
+ System.getProperty("file.separator") + "bin"
+ System.getProperty("file.separator") + "keytool");
command.append(" -genkey");
command.append(" -dname \"cn=foo,ou=bar,o=company,c=CH\"");
command.append(" -alias myProduct");
command.append(" -keypass " + "testtest");
command.append(" -keystore " + f.getAbsolutePath());
command.append(" -storepass " + "testtest");
command.append(" -validity " + 3650);
final Process pr = Runtime.getRuntime().exec(command.toString());
BufferedReader input = new BufferedReader(new InputStreamReader(
pr.getInputStream()));
String line = null;
while ((line = input.readLine()) != null) {
System.out.println(line);
}
int exitVal = -1;
try {
exitVal = pr.waitFor();
System.out.println("Exited with error code " + exitVal);
} catch (InterruptedException e) {
// handle
}
Linux下的输出
keytool error:java.io.IOException:无效的关键字“”CN“
在Linux命令行中运行命令(不是从java开始),代码可以运行。我做错了什么以及String[]
在使用
Runtime.getRuntime().exec(String[])
提前致谢!
答案 0 :(得分:4)
我建议改用http://docs.oracle.com/javase/6/docs/api/java/lang/Runtime.html#exec(java.lang.String [])
然后你不必担心逃避你在这里没有做的每一个论点
String args [] = {arg1, arg2, "-dname", "dNameArguments"};