0

AES アルゴリズム 128 ビット キーを実装しています。暗号化後、暗号化されたデータの最初の 16 バイトが .docx ファイルに保存されます。その後、.docx ファイルはブロックされます。

XWPFDocument document = new XWPFDocument() ;
FileOutputStream out = new FileOutputStream(filename,true);//filename is .docx word document
XWPFParagraph paragraph = document.createParagraph();
XWPFRun run = paragraph.createRun();
run.setText(ress1);//ress1 is a String datatype
document.write(out);
4

1 に答える 1

1

あなたのコメントから私が理解しているように、あなたはワードファイルを暗号化したいと考えています。次のコード スニペットを使用してそれを実現できます。

POIFSFileSystem fs = new POIFSFileSystem();
EncryptionInfo info = new EncryptionInfo(fs, EncryptionMode.agile);

Encryptor enc = info.getEncryptor();
enc.confirmPassword(<your_password>);


OPCPackage opc = OPCPackage.open(new File(<file_path>), PackageAccess.READ_WRITE); //opening package for encryption 
OutputStream os = enc.getDataStream(fs); //perform encryption 
opc.save(os); //save package
opc.close();

FileOutputStream fos = new FileOutputStream("file_path"); 
fs.writeFilesystem(fos); //write the file back to file system
fos.close();
于 2016-06-29T19:42:57.343 に答える