企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` FileInputStream fis = new FileInputStream("C:\\Users\\Administrator\\Desktop\\20140923094045_BNYji.thumb.700_0.png"); FileOutputStream fos = new FileOutputStream("test.png"); byte[] b = new byte[1024]; int len = 0; while ((len = fis.read(b)) != -1){ fos.write(b, 0, len); } fis.close(); fos.close(); ```