gpt4 book ai didi

java - 覆盖文件内容/字节

转载 作者:行者123 更新时间:2023-12-01 17:34:58 25 4
gpt4 key购买 nike

我有一个 (PDF) 文件存在于文件系统的已知位置。我希望覆盖该文件的内容(使用新的字节[])。

最好(也是最有效)的方法(使用 Java API)?

最佳答案

public void oneShotAPI(File file, byte[] bytes) throws IOException
{
FileOutputStream fos = null;
try
{
fos = new FileOutputStream(file);
fos.write(bytes);
fos.flush();
} finally
{
if (fos != null)
try
{
fos.close();
} catch (IOException e)
{
// Sad, but true
}
}
}

调用它:

oneShotAPI(new File("myPDF.png"), byteArray);

关于java - 覆盖文件内容/字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7499977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com