使用 eclipse 无法在 java 中解决 PMD 错误

PMD errors unable to resolve in java using eclipse

我在 eclipse 中创建了以下 java 服务并使用 PMD 插件检查了代码我遇到以下错误

** 错误 **

DataflowAnomalyAnalysis: Found 'DD'-anomaly for variable 'result' (lines '80'-'83').
SignatureDeclareThrowsException: A method/constructor should not explicitly throw java.lang.Exception

java 服务

@GetMapping("OCR/GetBarcodeRead")
    @ApiOperation("Get result from Barcode Zxing library")
    public String getBarcodeRead() throws Exception {

        String result = new String();

        try {
            result = service.zxing();
        } catch (Exception e) {
            System.out.println(e);
            result = "";

        }

        return result;

    }

有人可以帮我解决这个问题吗?提前致谢

你的方法声明你抛出 Exception,但你没有,所以删除它

public String getBarcodeRead() {

同时删除 new String() 并使用 ""

对其进行初始化
String result = "";