如何在java spring中使用zxing qr生成器设置qrcode文件权限为755 ?



执行下面的代码返回文件权限:"-rw-r-----">

我不想手动更改文件权限,有没有办法通过程序更改

public static void generateQRCodeImage(String text, int width, int height, String filePath)
throws WriterException, IOException {
QRCodeWriter qrCodeWriter = new QRCodeWriter();
BitMatrix bitMatrix = qrCodeWriter.encode(text, BarcodeFormat.QR_CODE, width, height);
Path path = FileSystems.getDefault().getPath(filePath);

MatrixToImageWriter.writeToPath(bitMatrix, "jpg", path);
}

完成,使用posixfilepermission

相关内容

  • 没有找到相关文章

最新更新