Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/SCPClient.java @ 292:855cdc3b2ced ganymed
start conversion from trilead to ganymed
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 18 Jul 2014 20:36:45 -0700 |
parents | 9ae4ed7bb523 |
children | 071eccdff8ea |
comparison
equal
deleted
inserted
replaced
291:9c202256d102 | 292:855cdc3b2ced |
---|---|
1 package ch.ethz.ssh2; | 1 package ch.ethz.ssh2; |
2 | 2 |
3 import java.io.BufferedInputStream; | |
4 import java.io.BufferedOutputStream; | |
5 import java.io.File; | |
6 import java.io.FileInputStream; | |
7 import java.io.FileOutputStream; | |
3 import java.io.IOException; | 8 import java.io.IOException; |
4 import java.io.InputStream; | 9 import java.io.InputStream; |
10 import java.io.OutputStream; | |
5 import java.nio.charset.Charset; | 11 import java.nio.charset.Charset; |
6 import java.nio.charset.UnsupportedCharsetException; | 12 import java.nio.charset.UnsupportedCharsetException; |
7 | 13 |
8 /** | 14 /** |
9 * A very basic <code>SCPClient</code> that can be used to copy files from/to | 15 * A very basic <code>SCPClient</code> that can be used to copy files from/to |