如何在java spring中使用zxing二维码生成器将二维码文件权限设置为755?

How to set qrcode file permission to 755 using zxing qr generator in java spring?

执行下面的代码 return 文件权限:“-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);

    }

完成,具有 posixfile 权限