我正在使用runtime.exec尝试将.SQL脚本执行到我本地的SQLite数据库文件中。我目前正在MacOS上运行它。
Runtime runtime = Runtime.getRuntime();
try
{
Process process = runtime.exec("sqlite3 /Users/Documents/Uni/Music\\ Player/src/Common/database.db < /Users/Documents/Uni/Music\\ Player/src/Common/database.sql");
BufferedReader stdError = new BufferedReader(newInputStreamReader(process.getErrorStream()));
try {
if (process.waitFor() != 0) {
String s = "";
System.err.println("exit value = " + process.exitValue());
System.out.println("Here is the standard error of the command (if any):");
while ((s = stdError.readLine()) != null) {
System.out.println(s);
}
}
} catch (InterruptedException e) {
System.err.println(e);
}
这是我目前正在使用的代码。如果我通过终端执行命令,它将成功执行,我的数据库将使用.SQL脚本的内容进行更新。
但是,当我通过代码执行此操作时,我收到错误:
Error: near "Player": syntax error
以及流程退出
我不能为我的生活找出String语法的错误。我尝试了多种不同的方法来逃避字符串中的空间失败。有任何想法吗?
答案 0 :(得分:1)
如果您查看`Runtime.exec()的文档,并按照实用程序方法的扩展,您会看到:
“更准确地说,命令字符串使用由调用new StringTokenizer(命令)创建的StringTokenizer分解为标记,而不进一步修改字符类别。”
现在,如果你试图用你自己的StringTokenizer
来破坏你的字符串,你会发现它被分成了:
sqlite3
/Users/Documents/Uni/Music\
Player/src/Common/database.db
<
/Users/Documents/Uni/Music\
Player/src/Common/database.sql
不是将整个命令传递给exec
,而是使用接受命令及其参数为String[]
的exec版本:
runtime.exec(new String[]{
"sqlite3",
" /Users/Documents/Uni/Music Player/src/Common/database.db"
});
然而,像这样重新读取输入将不起作用。当您键入命令时,由shell解释。如Running external program with redirected stdin and stdout from Java所示,您可能希望使用exec
而不是Process
。
答案 1 :(得分:1)
不要尝试使用手动硬编码String
来生成文件路径,而是让Path
生成Runtime.exec()
并让它为您生成文件路径。使用起来要困难得多,无论操作系统或文件系统是什么,它都可以生成正确的文件路径。
用此替换当前的exec命令以实现该更改:
Path parentDirectory = Paths.get("Users","Documents","Uni","Music Player","src","Common");
String sqlCommand = "sqlite3 database.db < database.sql";
Process process = runtime.exec(sqlCommand, null, parentDirectory.toFile());
这将运行&#34; sqlite3 database.db&lt; database.sql&#34;命令使用从父进程(JVM)继承的环境变量,并在parentDirectory
指定的目录中运行该命令,该目录恰好是您在问题中提供的目录。
但是,尽管修复了原始问题,但您的代码还包含与使用文件重定向相关的另一个问题。通过<
或>
进行文件重定向是一个shell构造,并且不会在shell之外工作。使用question addressing this exact problem here基本上就像在Windows上使用Run...
GUI一样,由于文件重定向不起作用,所以它不会在这里工作。您需要修复使用的命令才能解决此问题。幸运的是,有一个StackOverflow ProcessBuilder
。
以下是修复了这两个问题的代码:
Path parentDirectory = Paths.get("Users","Documents","Uni","Music Player","src","Common");
String sqlCommand = "sqlite3 database.db";
File inputSqlFile = new File("database.sql");
Process process = new ProcessBuilder()
.directory(parentDirectory.toFile())
.command(sqlCommand)
.redirectInput(Redirect.from(inputSqlFile))
.start();
此代码使用redirectinput()
将目录设置为与以前相同的父目录,但该命令已被修改以删除文件重定向,而使用方法实现文件重定向。如果在shell中执行,这将完成与"sqlite3 database.db < database.sql"
相同的操作,但此代码将在Java中工作。
编辑:
上面的代码不起作用,所以我试图修复它并添加了调试语句来帮助追踪问题:
Path databasePath = FileSystems.getDefault().getPath("Users", "Documents", "Uni", "Music Player", "src", "Common", "database.db");
Path sqlPath = FileSystems.getDefault().getPath("Users", "Documents", "Uni", "Music Player", "src", "Common", "database.sql");
File database = databasePath.toFile().getAbsoluteFile();
File sqlFile = sqlPath.toFile().getAbsoluteFile();
System.out.println("Database location:\n\t" + database.getCanonicalPath());
System.out.println("SQL file location:\n\t" + sqlFile.getCanonicalPath());
assert database.exists() && database.isFile() && database.canRead() && database.canWrite(): "No such database file!";
assert sqlFile.exists() && sqlFile.isFile() && database.canRead() : "No such SQL file!";
String[] sqlCommand = {"sqlite3", database.getCanonicalPath()};
Redirect sqlInput = Redirect.from(sqlFile);
File workingDirectory = database.getParentFile().getCanonicalFile();
System.out.println("Running this command:\n\t" +
sqlCommand[0] + sqlCommand[1] + "<" + sqlInput.file().getCanonicalPath());
Process process = new ProcessBuilder()
.directory(workingDirectory)
.command(sqlCommand)
.redirectInput(sqlInput)
.start();
这是删除调试代码并稍作清理的相同代码:
File database = FileSystems.getDefault()
.getPath("Users", "Documents", "Uni","Music Player", "src", "Common", "database.db")
.toFile().getAbsoluteFile();
File sqlFile = FileSystems.getDefault()
.getPath("Users", "Documents", "Uni","Music Player", "src", "Common", "database.sql")
.toFile().getAbsoluteFile();
String[] sqlCommand = {"sqlite3", database.getCanonicalPath()};
Redirect sqlInput = Redirect.from(sqlFile);
File workingDirectory = database.getParentFile().getCanonicalFile();
Process process = new ProcessBuilder()
.directory(workingDirectory)
.command(sqlCommand)
.redirectInput(sqlInput)
.start();