Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以通过 java 使用 apache poi 为选项卡赋予特定颜色?我正在使用 HSSF 工作簿。
您可以使用以下方法更改工作表标签颜色:
sheet.setTabColor(int colorIndex)
用于那个,所以如果我们使用
sheet.setTabColor(ColorNum);
ColorNum = 0:在选项卡中设置黑色。
ColorNum = 1 :在选项卡中设置白色。
ColorNum = 2 :在选项卡中设置红色。
ColorNum = 3:在选项卡中设置绿色。
ColorNum = 4:在选项卡中设置蓝色。
ColorNum = 5 :在选项卡中设置黄色。
等等。