3

セルコメントを作成するときにアンカーを適切に使用する方法を誰かに説明してもらえますか?鉱山は機能していましたが、スプレッドシートが変更され、セルのコメントを表示するのに問題があります。これは私が使用していたコードで、機能しました。

 Comment c = drawing.createCellComment (new HSSFClientAnchor(0, 0, 0, 0, (short)4, 2, (short)6, 5));

それは主に周りを実験することによって発見されました。それについてのAPIを見ると、それが正確に明確になるわけではありません。

クイックスタートガイドに基づいて、私は運が悪かった次のことも試しました。

ClientAnchor anchor = chf.createClientAnchor();
Comment c = drawing.createCellComment(anchor);
c.setString(chf.createRichTextString(message)); 
4

2 に答える 2

5

少し遅れますが、これはおそらく機能します(クイックスタートのApache POIの例も機能しませんでしたが、私には機能します):

    public void setComment(String text, Cell cell) {
    final Map<Sheet, HSSFPatriarch> drawingPatriarches = new HashMap<Sheet, HSSFPatriarch>();

    CreationHelper createHelper = cell.getSheet().getWorkbook().getCreationHelper();
    HSSFSheet sheet = (HSSFSheet) cell.getSheet();
    HSSFPatriarch drawingPatriarch = drawingPatriarches.get(sheet);
    if (drawingPatriarch == null) {
        drawingPatriarch = sheet.createDrawingPatriarch();
        drawingPatriarches.put(sheet, drawingPatriarch);
    }

    Comment comment = drawingPatriarch.createComment(new HSSFClientAnchor(0, 0, 0, 0, (short) 4, 2, (short) 6, 5));
    comment.setString(createHelper.createRichTextString(text));
    cell.setCellComment(comment);
}

Erik Pragt

于 2010-04-22T12:16:10.890 に答える
4

次のコードは、Office 2007(xlsx)形式のファイルで機能します。POIガイド http://poi.apache.org/spreadsheet/quick-guide.html#CellComments および apachepoiを使用して3つのセルにコメントを設定する方法からこれを理解しました

protected void setCellComment(Cell cell, String message) {
    Drawing drawing = cell.getSheet().createDrawingPatriarch();
    CreationHelper factory = cell.getSheet().getWorkbook()
            .getCreationHelper();
    // When the comment box is visible, have it show in a 1x3 space
    ClientAnchor anchor = factory.createClientAnchor();
    anchor.setCol1(cell.getColumnIndex());
    anchor.setCol2(cell.getColumnIndex() + 1);
    anchor.setRow1(cell.getRowIndex());
    anchor.setRow2(cell.getRowIndex() + 1);
    anchor.setDx1(100);
    anchor.setDx2(100);
    anchor.setDy1(100);
    anchor.setDy2(100);

    // Create the comment and set the text+author
    Comment comment = drawing.createCellComment(anchor);
    RichTextString str = factory.createRichTextString(message);
    comment.setString(str);
    comment.setAuthor("Apache POI");
    // Assign the comment to the cell
    cell.setCellComment(comment);
}
于 2011-07-04T14:47:49.400 に答える