1,一个读一个写;(接受的写)

  1. public class Text {
  2. public static void main(String[] args) throws IOException {
  3. //创建输入流:
  4. FileInputStream fis = new FileInputStream("C:\\Users\\14535\\Pictures\\素材\\mwp_2111_1200x2300_logo2.png");
  5. //创建输出流:一定是要文件啊
  6. FileOutputStream fos = new FileOutputStream("G:\\xxx.png");
  7. //创建存储数据的数组
  8. byte[] bytes = new byte[1024 * 8];
  9. //定义变量存储读取数据的长度;
  10. int len;
  11. //循环读取数据
  12. while ((len = fis.read(bytes)) != -1) {
  13. fos.write(bytes, 0, len);
  14. }
  15. //关闭流
  16. fos.close();
  17. fis.close();
  18. }
  19. }