更新: Apache POI に変更することにしましたが、セルを取得できないことを除いて、すべてがうまくいっているように見えますが、行を取得できます。
CellReference ref = new CellReference("personal_business_name");
Row r = sheet.getRow(ref.getRow());
Cell c;
if (r != null) {
c = r.getCell(ref.getCol());
c.setCellValue(buyers.get(transactions.get(transactionNo-1).getBuyerId()-1).getSurname_organization() + ", " + buyers.get(transactions.get(transactionNo-1).getBuyerId()-1).getFirstname());
}
プログラムをステップ実行したため、行を取得していないことを確認でき、if ステートメントにヒットしてからスキップします。
古い投稿は削除されました