我的要求是, 我有一台Oracle数据库服务器(Linux)和一台文件服务器(Linux)。使用Java,我必须连接到文件服务器,并从数据库服务器获取exp dump的副本。
下面是一段代码,可以完成相同的操作,但会收到错误“ bash:exp:命令未找到”。有人帮助我使用Java执行exp命令。 感谢您的所有努力和帮助。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
public static boolean exportDataBase ()
{
String exportCommand = " exp UserName/Password@DB_SID file=DB_METADATA.dmp ROWS=n statistics=none log=DB_METADATA_exp.log Owner=USER1 ";
try {
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
JSch jsch = new JSch();
Session session = jsch.getSession(ftpUserName, ftpServer, 22);
session.setPassword(ftpPassword);
session.setConfig(config);
session.connect();
System.out.println("Connected");
Channel channel = session.openChannel("exec");
((ChannelExec) channel).setCommand(exportCommand);
channel.setInputStream(null);
((ChannelExec) channel).setErrStream(System.err);
InputStream in = channel.getInputStream();
channel.connect();
byte[] tmp = new byte[1024];
while (true) {
while (in.available() > 0) {
int i = in.read(tmp, 0, 1024);
if (i < 0)
break;
System.out.print(new String(tmp, 0, i));
}
if (channel.isClosed()) {
System.out.println("exit-status: " + channel.getExitStatus());
break;
}
try {
Thread.sleep(1000);
} catch (Exception ee) {
}
}
channel.disconnect();
session.disconnect();
System.out.println("DONE");
} catch (Exception e) {
e.printStackTrace();
}
}