💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
``` 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(); ```