Java Apache Poi,如何同时设置背景颜色和边框

Java Apache Poi,如何同时设置背景颜色和边框,第1张

Java Apache Poi,如何同时设置背景颜色和边框

更改

backgroundStyle.setFillBackgroundColor(IndexedColors.GREY_50_PERCENT.getIndex());

 backgroundStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex());

您可以如下设置边框:

        backgroundStyle.setBorderBottom(CellStyle.BORDER_THIN);        backgroundStyle.setBottomBorderColor(IndexedColors.BLACK.getIndex());        backgroundStyle.setBorderLeft(CellStyle.BORDER_THIN);        backgroundStyle.setLeftBorderColor(IndexedColors.BLACK.getIndex());        backgroundStyle.setBorderRight(CellStyle.BORDER_THIN);        backgroundStyle.setRightBorderColor(IndexedColors.BLACK.getIndex());        backgroundStyle.setBorderTop(CellStyle.BORDER_THIN);        backgroundStyle.setTopBorderColor(IndexedColors.BLACK.getIndex());

这将根据需要为您提供黄色和边框



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5489242.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存