合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
``` 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(); ```