Hey All ~

I have some XLSX Streaming Code in Scala that is heavily based upon:
http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java

Even in the example code there is a big glaring comment:

                    case INLINESTR:
                        // TODO: have seen an example of this, so it's
untested.
                        XSSFRichTextString rtsi = new
XSSFRichTextString(value.toString());
                        thisStr = '"' + rtsi.toString() + '"';
                        break;

I'm looking for how to create an example cell that is of type "inlineStr"
within Excel itself, so I can make sure to have better coverage in my unit
testing.  Any tips?

Thanks,

Eric

Reply via email to