java – 在ApachePOI中使用而不是不推荐使用的CellRangeAddress.valueOf

前端之家收集整理的这篇文章主要介绍了java – 在ApachePOI中使用而不是不推荐使用的CellRangeAddress.valueOf前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在该地区添加条件格式,但是在教程中看到的一种方法已被弃用.使用什么而不是它.
样品:
ConditionalFormattingRule rule2 = sheetCF.createConditionalFormattingRule(ComparisonOperator.LT,"50");
    PatternFormatting fill2 = rule2.createPatternFormatting();
    fill2.setFillBackgroundColor(IndexedColors.GREEN.index);
    fill2.setFillPattern(PatternFormatting.SOLID_FOREGROUND);

    CellRangeAddress[] regions = {
            CellRangeAddress.valueOf("A1:A6") //DEPRECATED
    };
    sheetCF.addConditionalFormatting(regions,rule);

解决方法

您使用的是错误版本的CellRangeAddress. org.apache.poi.hssf.util.CellRangeAddress已被弃用,您应该使用的是 org.apache.poi.ss.util.CellRangeAddress.

您需要使用SS Common Spreadsheet Model类,而不是旧版HSSF

原文链接:https://www.f2er.com/java/122407.html

猜你在找的Java相关文章