第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 Java 中創(chuàng)建受密碼保護(hù)的 zip 文件,而無(wú)需在磁盤(pán)上創(chuàng)建它

在 Java 中創(chuàng)建受密碼保護(hù)的 zip 文件,而無(wú)需在磁盤(pán)上創(chuàng)建它

HUX布斯 2023-09-20 16:58:26
我需要?jiǎng)?chuàng)建一個(gè) zip 文件。它應(yīng)該受到密碼保護(hù)。我正在使用林加拉罐子。這是我的下面。有辦法做到嗎?我什至嘗試過(guò) zipoutstream,但找不到添加密碼的方法。@Componentpublic class FileZipUtils {    @Value("${candela.email.zip.folder}")    private String zipBaseDir;    @Value("${candela.email.zip.encryptionmethod:AES}")    private String encryptionMethod;    @Value("${candela.email.zip.encryptionstrength:KEY_STRENGTH_128}")    private String encryptionStrength;    private ZipParameters zipParameters;    @PostConstruct    private void initializeZipProperties() {        zipParameters = new ZipParameters();        zipParameters.setEncryptFiles(true);        zipParameters.setEncryptionMethod(EncryptionMethod.AES);        zipParameters.setAesKeyStrength(AesKeyStrength.KEY_STRENGTH_128);    }    /*     * Creates a zipfile in the zipBaseDir location     */    public ZipFile createZipFile(String zipFileName,char[] password) {        return new ZipFile(zipBaseDir + "/" + zipFileName,password);    }    /**     * Adds attachment to Zip file     */    public void addAttachementToZip(ZipFile zipFile, ByteArrayResource fileContentInBytes, String fileName)            throws IOException {        zipParameters.setFileNameInZip(fileName);        zipFile.addStream(fileContentInBytes.getInputStream(), zipParameters);    }}
查看完整描述

2 回答

?
www說(shuō)

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超8個(gè)贊

zip 文件 lib 的最佳解決方案zip4j。

特征:

  • 創(chuàng)建、添加、提取、更新、從 Zip 文件中刪除文件

  • 支持流(ZipInputStream 和 ZipOutputStream)

  • 讀/寫(xiě)受密碼保護(hù)的 Zip 文件和流

  • 支持 AES 和 Zip-Standard 加密方法

  • 支持 Zip64 格式

  • Store(無(wú)壓縮)和 Deflate 壓縮方法

  • 從分割 Zip 文件創(chuàng)建或提取文件(例如:z01、z02、...zip)

  • 支持 zip 中的 Unicode 文件名和注釋

  • 進(jìn)度監(jiān)視器 - 用于集成到應(yīng)用程序和面向用戶的應(yīng)用程序


查看完整回答
反對(duì) 回復(fù) 2023-09-20
?
躍然一笑

TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個(gè)贊

我認(rèn)為我們需要在磁盤(pán)上創(chuàng)建文件。



查看完整回答
反對(duì) 回復(fù) 2023-09-20
  • 2 回答
  • 0 關(guān)注
  • 136 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)