我对java比较新。我想要一个信息。
我使用以下代码在一个位置之间进行文件传输:
InputStream in = new FileInputStream(sourceLocation);
OutputStream out = new FileOutputStream(targetLocation);
// Copy the bits from instream to outstream
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
我想知道,它用于转移的渠道,以及该计划的任何其他网络相关信息?