我正在尝试运行smbclient命令,使用Java Runtime类将文件复制到共享驱动器,并使用以下代码:
private void copyFiles(String filePath) throws Exception {
String command = "smbclient -A smbclient_authentication.txt //192.14.34.118/testbakup -c \"put " + filePath + "\"";
System.out.println("Smbclinet command:" + command);
Process p = Runtime.getRuntime().exec(command);
int waitFor = p.waitFor();
if (waitFor == 0) {
System.out.println(p.exitValue());
StringBuffer sb = new StringBuffer();
BufferedReader reader =
new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
if (reader != null) reader.close();
} else {
InputStream errorStream = p.getErrorStream();
byte[] buffer = new byte[errorStream.available()];
errorStream.read(buffer);
String str = new String(buffer);
System.out.println(str);
if (errorStream != null) errorStream.close();
}
}
我尝试使用JCIFS库但是复制文件需要花费太多时间。所以我想用Java运行上面的命令。我能够从外部运行相同的命令,但不能从Java运行,它甚至不会给出任何错误。
答案 0 :(得分:0)
我没有找到运行上述命令的任何解决方案,因此将该驱动器装入我的机器并将文件复制到该安装目录。