You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2016/11/06 11:24:28 UTC

[Bug 60346] New: Changing sheet order in SXSSF worksheet made from template corrupts embeddings if comments are present

https://bz.apache.org/bugzilla/show_bug.cgi?id=60346

            Bug ID: 60346
           Summary: Changing sheet order in SXSSF worksheet made from
                    template corrupts embeddings if comments are present
           Product: POI
           Version: 3.15-FINAL
          Hardware: PC
            Status: NEW
          Severity: normal
          Priority: P2
         Component: SXSSF
          Assignee: dev@poi.apache.org
          Reporter: lacus-apache@rainstorm.org
  Target Milestone: ---

Created attachment 34423
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=34423&action=edit
Template with embedding to reproduce the bug.

1) Create an SXSSF workbook from template that has an embedding.
2) Create a sheet
3) Move sheet to first position
4) Create a cell and set a comment
5) Write out the workbook

Result: the embedding from the template lost its formula, so it is not possible
to open from Excel.

(Order of step 3 and 4 can be changed)

Sample template attached.


import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.ClientAnchor;
import org.apache.poi.ss.usermodel.Comment;
import org.apache.poi.ss.usermodel.CreationHelper;
import org.apache.poi.ss.usermodel.Drawing;
import org.apache.poi.ss.usermodel.RichTextString;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

/**
 *
 * @author Szenthe László
 */
public class TestAttach {

    public static final String WORKDIR = "C:\\tmp";

    public static void main(String[] args) throws Throwable {
        try {

            // Open the template workbook containing an embedding
            SXSSFWorkbook wb = new SXSSFWorkbook(new XSSFWorkbook(new File(
WORKDIR + File.separator + "xlsx.xlsx")));

            // Create a sheet
            Sheet sheet = wb.createSheet("test");

            // Insert into first position
            wb.setSheetOrder("test", 0);

            // Create a cell with comment attached
            Row row = sheet.createRow(1);
            Cell cell = row.createCell(1);

            CreationHelper factory = wb.getCreationHelper();
            Drawing drawing = sheet.createDrawingPatriarch();

            ClientAnchor anchor = factory.createClientAnchor();
            anchor.setCol1(cell.getColumnIndex());
            anchor.setCol2(cell.getColumnIndex() + 3);
            anchor.setRow1(row.getRowNum());
            anchor.setRow2(row.getRowNum() + 6);


            Comment comment;
            comment = drawing.createCellComment(anchor);
            RichTextString str = factory.createRichTextString("comment");
            comment.setString(str);
            //comment.setAuthor("Author");

            // Assign the comment to the cell
            cell.setCellComment(comment);



            // Write out the workbook
            wb.write(new FileOutputStream(new File(WORKDIR, "out.xlsx")));

        } catch (IOException | InvalidFormatException ex) {
            ex.printStackTrace();
        }

    }
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 60346] Changing sheet order in SXSSF worksheet made from template corrupts embeddings if comments are present

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=60346

Dominik Stadler <do...@gmx.at> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org