Apache POI 4.0: XSSFColor from java.awt.Color
up vote
2
down vote
favorite
org.apache.poi 4.0 removed the XSSFColor constructor that just uses java.awt.Color. In org.apache.poi 3.7 it was very easy to create the object by just writing
Color inputColor = Color.RED;
XSSFColor test = new XSSFColor(inputColor);
However, this constructor no longer works in 4.0. The documentation at https://poi.apache.org/apidocs/dev/org/apache/poi/xssf/usermodel/XSSFColor.html shows several other constructors, but ideally i want to change as few lines as possible.
So, my question is, what is the best way to create an XSSFColor from a java.awt.Color now (in apache poi 4.0)?
As requested in the comments, here is my test code using the suggestion style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));
Opening this with LibreOffice 6.1 yields an Error (Attempt to repair, which then fails). Commented out the POI 3.7 version which works normally.
@Test
public void testPOI40() throws FileNotFoundException, IOException
Workbook workbook = new XSSFWorkbook();
XSSFSheet fSheet = (XSSFSheet) workbook.createSheet("new Sheet");
XSSFRow hRow = fSheet.createRow((short) 0);
//header
String astrHeaders = new String"Header1", "Header2", "Header3", "Header4";
for (int col = 0; col < astrHeaders.length; col++)
XSSFCell cell = hRow.createCell((short) col);
XSSFCellStyle tempHeaderStyle = (XSSFCellStyle) workbook.createCellStyle();
tempHeaderStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
tempHeaderStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellValue(astrHeaders[col]);
cell.setCellStyle(tempHeaderStyle);
//body
Double astrContent = new Double1.3, 0.3, 0.87, 1.0;
Color colors = new Color Color.RED,Color.BLUE,Color.WHITE,Color.GREEN;
XSSFRow fRow = fSheet.createRow((short) 1);
for (int iCol = 0; iCol < 4; iCol++)
XSSFCell cell = fRow.createCell((short) iCol);
XSSFCellStyle tempBodyStyle = (XSSFCellStyle) workbook.createCellStyle();
cell.setCellValue(astrContent[iCol]);
//working with POI 3.17
//tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol]));
tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol],null));
tempBodyStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellStyle(tempBodyStyle);
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
fileOut.close();
Solution:
Replaced fileout.close(); with bos.close(); and it works. So tempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null)); as suggested in the comments by Alex Richter is a good solution & will accept this as answer.
java colors apache-poi apache-poi-4
|
show 1 more comment
up vote
2
down vote
favorite
org.apache.poi 4.0 removed the XSSFColor constructor that just uses java.awt.Color. In org.apache.poi 3.7 it was very easy to create the object by just writing
Color inputColor = Color.RED;
XSSFColor test = new XSSFColor(inputColor);
However, this constructor no longer works in 4.0. The documentation at https://poi.apache.org/apidocs/dev/org/apache/poi/xssf/usermodel/XSSFColor.html shows several other constructors, but ideally i want to change as few lines as possible.
So, my question is, what is the best way to create an XSSFColor from a java.awt.Color now (in apache poi 4.0)?
As requested in the comments, here is my test code using the suggestion style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));
Opening this with LibreOffice 6.1 yields an Error (Attempt to repair, which then fails). Commented out the POI 3.7 version which works normally.
@Test
public void testPOI40() throws FileNotFoundException, IOException
Workbook workbook = new XSSFWorkbook();
XSSFSheet fSheet = (XSSFSheet) workbook.createSheet("new Sheet");
XSSFRow hRow = fSheet.createRow((short) 0);
//header
String astrHeaders = new String"Header1", "Header2", "Header3", "Header4";
for (int col = 0; col < astrHeaders.length; col++)
XSSFCell cell = hRow.createCell((short) col);
XSSFCellStyle tempHeaderStyle = (XSSFCellStyle) workbook.createCellStyle();
tempHeaderStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
tempHeaderStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellValue(astrHeaders[col]);
cell.setCellStyle(tempHeaderStyle);
//body
Double astrContent = new Double1.3, 0.3, 0.87, 1.0;
Color colors = new Color Color.RED,Color.BLUE,Color.WHITE,Color.GREEN;
XSSFRow fRow = fSheet.createRow((short) 1);
for (int iCol = 0; iCol < 4; iCol++)
XSSFCell cell = fRow.createCell((short) iCol);
XSSFCellStyle tempBodyStyle = (XSSFCellStyle) workbook.createCellStyle();
cell.setCellValue(astrContent[iCol]);
//working with POI 3.17
//tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol]));
tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol],null));
tempBodyStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellStyle(tempBodyStyle);
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
fileOut.close();
Solution:
Replaced fileout.close(); with bos.close(); and it works. So tempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null)); as suggested in the comments by Alex Richter is a good solution & will accept this as answer.
java colors apache-poi apache-poi-4
Thanks for answering, however the table resulting from the first method is reported as damaged when trying to open it. The second method fails becausesetColor(Color) has protected access in ExtendedColor.
– ptstone
Nov 9 at 14:56
2
Sorry butstyle.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));works for me usingapache poi 4.0.0and creatingXSSFWorkbookfrom scratch. Please show minimal complete verifiable example which shows where it fails.
– Axel Richter
Nov 9 at 15:31
Thank you, I added my test for your suggestion to the main post now.
– ptstone
Nov 9 at 16:21
Just to clarify, the code doesn't cause an error, but the output file cannot be read (but the version using POI 3.7, see commented out section, is readable)
– ptstone
Nov 9 at 16:35
2
The damaging has nothing to do with the colors. You are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream. Doworkbook.write(bos); bos.close();and it will work. At least it works for me then. It might had worked in formerapache poiversions becauseWorkbook.writehad closed all streams when it was ready. This it does not more.
– Axel Richter
Nov 9 at 16:36
|
show 1 more comment
up vote
2
down vote
favorite
up vote
2
down vote
favorite
org.apache.poi 4.0 removed the XSSFColor constructor that just uses java.awt.Color. In org.apache.poi 3.7 it was very easy to create the object by just writing
Color inputColor = Color.RED;
XSSFColor test = new XSSFColor(inputColor);
However, this constructor no longer works in 4.0. The documentation at https://poi.apache.org/apidocs/dev/org/apache/poi/xssf/usermodel/XSSFColor.html shows several other constructors, but ideally i want to change as few lines as possible.
So, my question is, what is the best way to create an XSSFColor from a java.awt.Color now (in apache poi 4.0)?
As requested in the comments, here is my test code using the suggestion style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));
Opening this with LibreOffice 6.1 yields an Error (Attempt to repair, which then fails). Commented out the POI 3.7 version which works normally.
@Test
public void testPOI40() throws FileNotFoundException, IOException
Workbook workbook = new XSSFWorkbook();
XSSFSheet fSheet = (XSSFSheet) workbook.createSheet("new Sheet");
XSSFRow hRow = fSheet.createRow((short) 0);
//header
String astrHeaders = new String"Header1", "Header2", "Header3", "Header4";
for (int col = 0; col < astrHeaders.length; col++)
XSSFCell cell = hRow.createCell((short) col);
XSSFCellStyle tempHeaderStyle = (XSSFCellStyle) workbook.createCellStyle();
tempHeaderStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
tempHeaderStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellValue(astrHeaders[col]);
cell.setCellStyle(tempHeaderStyle);
//body
Double astrContent = new Double1.3, 0.3, 0.87, 1.0;
Color colors = new Color Color.RED,Color.BLUE,Color.WHITE,Color.GREEN;
XSSFRow fRow = fSheet.createRow((short) 1);
for (int iCol = 0; iCol < 4; iCol++)
XSSFCell cell = fRow.createCell((short) iCol);
XSSFCellStyle tempBodyStyle = (XSSFCellStyle) workbook.createCellStyle();
cell.setCellValue(astrContent[iCol]);
//working with POI 3.17
//tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol]));
tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol],null));
tempBodyStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellStyle(tempBodyStyle);
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
fileOut.close();
Solution:
Replaced fileout.close(); with bos.close(); and it works. So tempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null)); as suggested in the comments by Alex Richter is a good solution & will accept this as answer.
java colors apache-poi apache-poi-4
org.apache.poi 4.0 removed the XSSFColor constructor that just uses java.awt.Color. In org.apache.poi 3.7 it was very easy to create the object by just writing
Color inputColor = Color.RED;
XSSFColor test = new XSSFColor(inputColor);
However, this constructor no longer works in 4.0. The documentation at https://poi.apache.org/apidocs/dev/org/apache/poi/xssf/usermodel/XSSFColor.html shows several other constructors, but ideally i want to change as few lines as possible.
So, my question is, what is the best way to create an XSSFColor from a java.awt.Color now (in apache poi 4.0)?
As requested in the comments, here is my test code using the suggestion style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));
Opening this with LibreOffice 6.1 yields an Error (Attempt to repair, which then fails). Commented out the POI 3.7 version which works normally.
@Test
public void testPOI40() throws FileNotFoundException, IOException
Workbook workbook = new XSSFWorkbook();
XSSFSheet fSheet = (XSSFSheet) workbook.createSheet("new Sheet");
XSSFRow hRow = fSheet.createRow((short) 0);
//header
String astrHeaders = new String"Header1", "Header2", "Header3", "Header4";
for (int col = 0; col < astrHeaders.length; col++)
XSSFCell cell = hRow.createCell((short) col);
XSSFCellStyle tempHeaderStyle = (XSSFCellStyle) workbook.createCellStyle();
tempHeaderStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
tempHeaderStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellValue(astrHeaders[col]);
cell.setCellStyle(tempHeaderStyle);
//body
Double astrContent = new Double1.3, 0.3, 0.87, 1.0;
Color colors = new Color Color.RED,Color.BLUE,Color.WHITE,Color.GREEN;
XSSFRow fRow = fSheet.createRow((short) 1);
for (int iCol = 0; iCol < 4; iCol++)
XSSFCell cell = fRow.createCell((short) iCol);
XSSFCellStyle tempBodyStyle = (XSSFCellStyle) workbook.createCellStyle();
cell.setCellValue(astrContent[iCol]);
//working with POI 3.17
//tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol]));
tempBodyStyle.setFillForegroundColor(new XSSFColor(colors[iCol],null));
tempBodyStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellStyle(tempBodyStyle);
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
fileOut.close();
Solution:
Replaced fileout.close(); with bos.close(); and it works. So tempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null)); as suggested in the comments by Alex Richter is a good solution & will accept this as answer.
java colors apache-poi apache-poi-4
java colors apache-poi apache-poi-4
edited Nov 9 at 16:53
asked Nov 9 at 14:00
ptstone
11410
11410
Thanks for answering, however the table resulting from the first method is reported as damaged when trying to open it. The second method fails becausesetColor(Color) has protected access in ExtendedColor.
– ptstone
Nov 9 at 14:56
2
Sorry butstyle.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));works for me usingapache poi 4.0.0and creatingXSSFWorkbookfrom scratch. Please show minimal complete verifiable example which shows where it fails.
– Axel Richter
Nov 9 at 15:31
Thank you, I added my test for your suggestion to the main post now.
– ptstone
Nov 9 at 16:21
Just to clarify, the code doesn't cause an error, but the output file cannot be read (but the version using POI 3.7, see commented out section, is readable)
– ptstone
Nov 9 at 16:35
2
The damaging has nothing to do with the colors. You are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream. Doworkbook.write(bos); bos.close();and it will work. At least it works for me then. It might had worked in formerapache poiversions becauseWorkbook.writehad closed all streams when it was ready. This it does not more.
– Axel Richter
Nov 9 at 16:36
|
show 1 more comment
Thanks for answering, however the table resulting from the first method is reported as damaged when trying to open it. The second method fails becausesetColor(Color) has protected access in ExtendedColor.
– ptstone
Nov 9 at 14:56
2
Sorry butstyle.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));works for me usingapache poi 4.0.0and creatingXSSFWorkbookfrom scratch. Please show minimal complete verifiable example which shows where it fails.
– Axel Richter
Nov 9 at 15:31
Thank you, I added my test for your suggestion to the main post now.
– ptstone
Nov 9 at 16:21
Just to clarify, the code doesn't cause an error, but the output file cannot be read (but the version using POI 3.7, see commented out section, is readable)
– ptstone
Nov 9 at 16:35
2
The damaging has nothing to do with the colors. You are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream. Doworkbook.write(bos); bos.close();and it will work. At least it works for me then. It might had worked in formerapache poiversions becauseWorkbook.writehad closed all streams when it was ready. This it does not more.
– Axel Richter
Nov 9 at 16:36
Thanks for answering, however the table resulting from the first method is reported as damaged when trying to open it. The second method fails because
setColor(Color) has protected access in ExtendedColor.– ptstone
Nov 9 at 14:56
Thanks for answering, however the table resulting from the first method is reported as damaged when trying to open it. The second method fails because
setColor(Color) has protected access in ExtendedColor.– ptstone
Nov 9 at 14:56
2
2
Sorry but
style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); works for me using apache poi 4.0.0 and creating XSSFWorkbook from scratch. Please show minimal complete verifiable example which shows where it fails.– Axel Richter
Nov 9 at 15:31
Sorry but
style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); works for me using apache poi 4.0.0 and creating XSSFWorkbook from scratch. Please show minimal complete verifiable example which shows where it fails.– Axel Richter
Nov 9 at 15:31
Thank you, I added my test for your suggestion to the main post now.
– ptstone
Nov 9 at 16:21
Thank you, I added my test for your suggestion to the main post now.
– ptstone
Nov 9 at 16:21
Just to clarify, the code doesn't cause an error, but the output file cannot be read (but the version using POI 3.7, see commented out section, is readable)
– ptstone
Nov 9 at 16:35
Just to clarify, the code doesn't cause an error, but the output file cannot be read (but the version using POI 3.7, see commented out section, is readable)
– ptstone
Nov 9 at 16:35
2
2
The damaging has nothing to do with the colors. You are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream. Do
workbook.write(bos); bos.close(); and it will work. At least it works for me then. It might had worked in former apache poi versions because Workbook.write had closed all streams when it was ready. This it does not more.– Axel Richter
Nov 9 at 16:36
The damaging has nothing to do with the colors. You are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream. Do
workbook.write(bos); bos.close(); and it will work. At least it works for me then. It might had worked in former apache poi versions because Workbook.write had closed all streams when it was ready. This it does not more.– Axel Richter
Nov 9 at 16:36
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
If you are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream, then the BufferedOutputStream remains open and the file will not have all bytes in.
That's why the damaging of the file.
So the damaging has noting to do with constructing the XSSFColor. The constructor style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); works.
Do instead:
...
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
bos.close();
workbook.close();
...
It might had worked in former apache poi versions because XSSFWorkbook.write had closed all streams when it was ready. This it does not more. And this is correct because write should not closing streams.
But since POIXMLDocument implements java.io.Closeable at least workbook.close() should closing all streams. But that also it does not. So explicitly closing all streams is necessary in apache poi 4.0.0.
Thanks again. Could you maybeadd the linetempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null));in the answer for people who just look for a oneliner to replace the old method (and are not intersted in my example)?
– ptstone
Nov 9 at 17:01
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
If you are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream, then the BufferedOutputStream remains open and the file will not have all bytes in.
That's why the damaging of the file.
So the damaging has noting to do with constructing the XSSFColor. The constructor style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); works.
Do instead:
...
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
bos.close();
workbook.close();
...
It might had worked in former apache poi versions because XSSFWorkbook.write had closed all streams when it was ready. This it does not more. And this is correct because write should not closing streams.
But since POIXMLDocument implements java.io.Closeable at least workbook.close() should closing all streams. But that also it does not. So explicitly closing all streams is necessary in apache poi 4.0.0.
Thanks again. Could you maybeadd the linetempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null));in the answer for people who just look for a oneliner to replace the old method (and are not intersted in my example)?
– ptstone
Nov 9 at 17:01
add a comment |
up vote
2
down vote
accepted
If you are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream, then the BufferedOutputStream remains open and the file will not have all bytes in.
That's why the damaging of the file.
So the damaging has noting to do with constructing the XSSFColor. The constructor style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); works.
Do instead:
...
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
bos.close();
workbook.close();
...
It might had worked in former apache poi versions because XSSFWorkbook.write had closed all streams when it was ready. This it does not more. And this is correct because write should not closing streams.
But since POIXMLDocument implements java.io.Closeable at least workbook.close() should closing all streams. But that also it does not. So explicitly closing all streams is necessary in apache poi 4.0.0.
Thanks again. Could you maybeadd the linetempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null));in the answer for people who just look for a oneliner to replace the old method (and are not intersted in my example)?
– ptstone
Nov 9 at 17:01
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
If you are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream, then the BufferedOutputStream remains open and the file will not have all bytes in.
That's why the damaging of the file.
So the damaging has noting to do with constructing the XSSFColor. The constructor style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); works.
Do instead:
...
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
bos.close();
workbook.close();
...
It might had worked in former apache poi versions because XSSFWorkbook.write had closed all streams when it was ready. This it does not more. And this is correct because write should not closing streams.
But since POIXMLDocument implements java.io.Closeable at least workbook.close() should closing all streams. But that also it does not. So explicitly closing all streams is necessary in apache poi 4.0.0.
If you are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream, then the BufferedOutputStream remains open and the file will not have all bytes in.
That's why the damaging of the file.
So the damaging has noting to do with constructing the XSSFColor. The constructor style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null)); works.
Do instead:
...
FileOutputStream fileOut = new FileOutputStream(new File("testfile.xlsx"));
BufferedOutputStream bos = new BufferedOutputStream(fileOut);
workbook.write(bos);
bos.close();
workbook.close();
...
It might had worked in former apache poi versions because XSSFWorkbook.write had closed all streams when it was ready. This it does not more. And this is correct because write should not closing streams.
But since POIXMLDocument implements java.io.Closeable at least workbook.close() should closing all streams. But that also it does not. So explicitly closing all streams is necessary in apache poi 4.0.0.
edited Nov 9 at 17:08
answered Nov 9 at 16:56
Axel Richter
23.6k21733
23.6k21733
Thanks again. Could you maybeadd the linetempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null));in the answer for people who just look for a oneliner to replace the old method (and are not intersted in my example)?
– ptstone
Nov 9 at 17:01
add a comment |
Thanks again. Could you maybeadd the linetempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null));in the answer for people who just look for a oneliner to replace the old method (and are not intersted in my example)?
– ptstone
Nov 9 at 17:01
Thanks again. Could you maybeadd the line
tempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null)); in the answer for people who just look for a oneliner to replace the old method (and are not intersted in my example)?– ptstone
Nov 9 at 17:01
Thanks again. Could you maybeadd the line
tempBodyStyle.setFillForegroundColor(new XSSFColor(Color.RED,null)); in the answer for people who just look for a oneliner to replace the old method (and are not intersted in my example)?– ptstone
Nov 9 at 17:01
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53227136%2fapache-poi-4-0-xssfcolor-from-java-awt-color%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Thanks for answering, however the table resulting from the first method is reported as damaged when trying to open it. The second method fails because
setColor(Color) has protected access in ExtendedColor.– ptstone
Nov 9 at 14:56
2
Sorry but
style.setFillForegroundColor(new XSSFColor(java.awt.Color.RED, null));works for me usingapache poi 4.0.0and creatingXSSFWorkbookfrom scratch. Please show minimal complete verifiable example which shows where it fails.– Axel Richter
Nov 9 at 15:31
Thank you, I added my test for your suggestion to the main post now.
– ptstone
Nov 9 at 16:21
Just to clarify, the code doesn't cause an error, but the output file cannot be read (but the version using POI 3.7, see commented out section, is readable)
– ptstone
Nov 9 at 16:35
2
The damaging has nothing to do with the colors. You are wrapping the FileOutputStream in an BufferedOutputStream but do closing then only the inner FileOutputStream but not the BufferedOutputStream. Do
workbook.write(bos); bos.close();and it will work. At least it works for me then. It might had worked in formerapache poiversions becauseWorkbook.writehad closed all streams when it was ready. This it does not more.– Axel Richter
Nov 9 at 16:36