Secure copy files from remote server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static void copyRemoteToLocal(Session session, String from, String to, String fileName) throws JSchException, IOException { | |
from = from + File.separator + fileName; | |
String prefix = null; | |
if (new File(to).isDirectory()) { | |
prefix = to + File.separator; | |
} | |
// exec 'scp -f rfile' remotely | |
String command = "scp -f " + from; | |
Channel channel = session.openChannel("exec"); | |
((ChannelExec) channel).setCommand(command); | |
// get I/O streams for remote scp | |
OutputStream out = channel.getOutputStream(); | |
InputStream in = channel.getInputStream(); | |
channel.connect(); | |
byte[] buf = new byte[1024]; | |
// send '\0' | |
buf[0] = 0; | |
out.write(buf, 0, 1); | |
out.flush(); | |
while (true) { | |
int c = checkAck(in); | |
if (c != 'C') { | |
break; | |
} | |
// read '0644 ' | |
in.read(buf, 0, 5); | |
long filesize = 0L; | |
while (true) { | |
if (in.read(buf, 0, 1) < 0) { | |
// error | |
break; | |
} | |
if (buf[0] == ' ') break; | |
filesize = filesize * 10L + (long) (buf[0] - '0'); | |
} | |
String file = null; | |
for (int i = 0; ; i++) { | |
in.read(buf, i, 1); | |
if (buf[i] == (byte) 0x0a) { | |
file = new String(buf, 0, i); | |
break; | |
} | |
} | |
System.out.println("file-size=" + filesize + ", file=" + file); | |
// send '\0' | |
buf[0] = 0; | |
out.write(buf, 0, 1); | |
out.flush(); | |
// read a content of lfile | |
FileOutputStream fos = new FileOutputStream(prefix == null ? to : prefix + file); | |
int foo; | |
while (true) { | |
if (buf.length < filesize) foo = buf.length; | |
else foo = (int) filesize; | |
foo = in.read(buf, 0, foo); | |
if (foo < 0) { | |
// error | |
break; | |
} | |
fos.write(buf, 0, foo); | |
filesize -= foo; | |
if (filesize == 0L) break; | |
} | |
if (checkAck(in) != 0) { | |
System.exit(0); | |
} | |
// send '\0' | |
buf[0] = 0; | |
out.write(buf, 0, 1); | |
out.flush(); | |
try { | |
if (fos != null) fos.close(); | |
} catch (Exception ex) { | |
System.out.println(ex); | |
} | |
} | |
channel.disconnect(); | |
session.disconnect(); | |
} | |
public static int checkAck(InputStream in) throws IOException { | |
int b = in.read(); | |
// b may be 0 for success, | |
// 1 for error, | |
// 2 for fatal error, | |
// -1 | |
if (b == 0) return b; | |
if (b == -1) return b; | |
if (b == 1 || b == 2) { | |
StringBuffer sb = new StringBuffer(); | |
int c; | |
do { | |
c = in.read(); | |
sb.append((char) c); | |
} | |
while (c != '\n'); | |
if (b == 1) { // error | |
System.out.print(sb.toString()); | |
} | |
if (b == 2) { // fatal error | |
System.out.print(sb.toString()); | |
} | |
} | |
return b; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment