如何使用java程序执行oraenv脚本?我如何从Linux终端执行。
[oracle@DeltaLinOraASM2 tmp]$ . oraenv
ORACLE_SID = [oracle] ? deltaasm
The Oracle base has been set to /u01/app/oracle
[oracle@DeltaLinOraASM2 tmp]$
我的oraenv脚本文件包含以下内容:
export ORACLE_HOME=/opt/oracle/product/12.2.0.1/dbhome_1
export PATH=$PATH:$ORACLE_HOME/bin
export ORACLE_SID=deltaasm
如何使用java程序执行oraenv文件。
问ORACLE_SID =?执行脚本后。但是从程序中它没有被执行。
public class App2 {
public static String RunLinuxGrepCommand(String command) {
String line = null;
String strstatus = "";
try {
String[] cmd = { "/bin/sh", "-c", command };
Process p = Runtime.getRuntime().exec(cmd);
BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((line = in.readLine()) != null) {
strstatus = line;
}
in.close();
} catch (Exception e) {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
e.printStackTrace(pw);
pw.flush();
String stackTrace = sw.toString();
int lenoferrorstr = stackTrace.length();
if (lenoferrorstr > 500) {
strstatus = "Error:" + stackTrace.substring(0, 500);
} else {
strstatus = "Error:" + stackTrace.substring(0, lenoferrorstr - 1);
}
}
System.out.println("strstatus" + strstatus);
return strstatus;
}
public static void main(String[] args) throws IOException {
String str = ". oraenv ; deltaasm ";
App2.RunLinuxGrepCommand(str);
}
}
答案 0 :(得分:2)
您需要了解在Java中使用exec
时会发生什么:
例如,如果你这样做:
exec(". oraenv");
exec("someOracleCommand");
会发生什么:
看到问题?环境变量设置不会从第一个进程传递到第二个进程。
实际上,我上面所说的是不真实的。跑步"。 oraenv的"就像在任何情况下都不会工作一样。 "。"命令是内置的shell,除非您正在运行shell,否则它不可用。以上哪项不做。 exec(". orenv")
将失败。
解决方案:您需要在同一个shell中运行. oraenv
和命令,如下所示:
exec("/bin/bash", "-c",
". oraenv ; someOracleCommand");
我们所做的是将shell命令序列放在一行中,并将其传递给shell来执行。 shell了解如何解析命令序列...并将在shell的环境中设置环境变量,以便它们可用于在shell中运行的以下命令。