Excelのセルにコメントを追加しようとしています。私はそれを行うためにjxlライブラリを使用しています:
cell = sheet.getWritableCell(1, 2); // cols, rows
WritableCellFeatures wcf = cell.getWritableCellFeatures();
wcf.setComment("comment2");
最後の行は次を返しますException in thread "AWT-EventQueue-0" java.lang.NullPointerException
。多くの試みにもかかわらず、私はそれを修正することができません。ヘルプをいただければ幸いです。ありがとうございました。
--EDIT--
これは、変更後のaddNumberメソッドです。
private static void addNumber(WritableSheet sheet, int column, int row,
double d) throws WriteException, RowsExceededException {
Number number;
number = new Number(column, row, d, timesStandard);
//sheet.addCell(number); // need to add the cell first
if (user wants to add a comment) {
WritableCellFeatures wcf = new WritableCellFeatures();
wcf.setComment("the comment");
number.setCellFeatures(wcf);
}
//sheet.addCell(number); // but may need to add the cell with comments as well
}