您好,我正在搜索免费的 api 或一些简单的代码来加密和解密 pdf 文件。从流中下载文件时应进行加密:
while ((bufferLength = inputStream.read(buffer)) > 0) {
/*
* Writes bufferLength characters starting at 0 in buffer to the target
*
* buffer the non-null character array to write. 0 the index
* of the first character in buffer to write. bufferLength the maximum
* number of characters to write.
*/
fileOutput.write(buffer, 0, bufferLength);
}
并在需要用pdf阅读器打开时解密。也许有一些信息、代码或免费 Api ?有人做过这样的事情吗?
我发现自己有一些代码和 api。不过暂时没什么好说的。
谢谢。