如何使用java将字节数组附加到文件而不覆盖它

编程入门 行业动态 更新时间:2024-10-28 18:23:25
本文介绍了如何使用java将字节数组附加到文件而不覆盖它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我尝试进行 AES 加密,但正在生成 salt .但是我遇到了一些问题.下面的代码工作正常,但每当我加密第二个等文件时,文件中的盐就会被覆盖.关于如何将盐字节 [] 附加到盐文件而不覆盖它的任何建议?

I trying to make an AES encryption and i am generating a salt . However i had encountered some issue. the below code work fine but whenever i encrypted the second and so on files, the salt in side the file is overwritten. any suggestion on how to append the salt byte [] into the salt fil without overwriting it ?

伙计们..我更新了我的代码..感谢那部分,虽然它修复了覆盖问题,但它没有进入下一行.

Guys..i updated my code..thanks for that portion although it fixed the overwritting issue, it does not make it to next line.

在我的文件中输出:˜V"÷ҲÖ4ô|ŒT‰mÊî0'Z^'û•šÙK·=这是两种盐的组合.

output on my file : ˜V"÷ҲÖ4ô¦ŒT‰mÊî0‘Z^'û•šÙK· = this is two salt combined.

知道如何将其附加到下一行吗?

any idea how to make it append on next line?

我尝试 saltoutfile.write("/n") 但不起作用

i trying saltoutfile.write("/n") but doesnt work

    public byte[] generateSalt() throws IOException{
            //generate Salt value
            // password, iv and salt should be transferred to the other end
            // in a secure manner
            // salt is used for encoding
            // writing it to a file
            // salt should be transferred to the recipient securely
            // for decryption
    byte[] salt = new byte[8];
    SecureRandom secureRandom = new SecureRandom();
    secureRandom.nextBytes(salt);
            FileOutputStream saltOutFile = new FileOutputStream("C:\\KryptZIP\\salt.enc" , true);
            saltOutFile.write(salt);
        saltOutFile.close();
            return salt;


}

如评论中所述:这是我的读取盐值

as mentioned in comment: this is my read salt value

    public static byte[] readSalt() throws IOException{
    // reading the salt
            // user should have secure mechanism to transfer the
            // salt, iv and password to the recipient
            FileInputStream saltFis = new FileInputStream("C:\\KryptZIP\\salt.enc");
            byte[] salt = new byte[8];
            saltFis.read(salt);
            saltFis.close();
            return salt;
}

推荐答案

您需要使用带有 2 个参数的 FileOutputStream 构造函数.第二个参数是一个布尔标志,指示您是要追加(true)到文件还是从头开始(false).

You need to use the constructor of FileOutputStream with 2 arguments. The second argument is a boolean flag indicating whether you want to append (true) to the file or write from the beginning (false).

将您的代码更改为:

 FileOutputStream saltOutFile = new FileOutputStream("C:\\KryptZIP\\salt.enc", true);

这篇关于如何使用java将字节数组附加到文件而不覆盖它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-17 20:51:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/922728.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:而不   数组   如何使用   字节   文件

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!