Java处理 文件复制
Posted 1582277142
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java处理 文件复制相关的知识,希望对你有一定的参考价值。
try {
InputStream in = new FileInputStream(new File(oldPath));
OutputStream out = new FileOutputStream(new File(newPath ));
byte[] be = new byte[100];
while (in.read(be) != -1) {
out.write(be);
}
in.close();
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
以上是关于Java处理 文件复制的主要内容,如果未能解决你的问题,请参考以下文章
如何通过表单上传文件并让 Java 将其作为 InputStream 处理? [复制]