Jxl and the maximum number of formatted cells

When I write Excel files using jxl and use my own cell format, I get this warning: the maximum number of formatted cells is highlighted. Using the default format "I have about 350 cells that need to be formatted, which is relatively small for me. Am I doing something wrong? I use loops to adjust the format of my cell. Or is there a way to increase the number of formatted cells" All my code is a long but simple formatting example:

for (int = 0; i <30; i ++)} ws.getWritableCell (2, i) .setCellFormat (sumrow ());
{

+3
source share
1 answer

CellFormat?

, , CellFormat - .

, 350 , . CellFormat setCellFormat.

+6

Source: https://habr.com/ru/post/1774901/


All Articles