記入しなければならない Excel ワークシートが渡されたので、JExcel を使用して記入しています。ただし、JExcel を使用して 1 つのセルだけを入力すると機能しますが、すべてが遅れる不要な警告が大量に表示されます (Excel ファイルに含まれるすべてのメタデータが原因であると想定しています)。メタデータを削除せずにこれらの警告を回避する方法を知っている人はいますか? (相手側で入力された Excel ワークシートを解析することが重要であると想定しているため、メタデータを保持する必要があります)
あなたの助けは大歓迎です!
public static void main(String args[]){
Workbook workbook;
try{
workbook = Workbook.getWorkbook(new File("Test.xls"));
WritableWorkbook copy = Workbook.createWorkbook(new File("output.xls"), workbook);
WritableSheet sheet1 = copy.getSheet(0);
Label label = new Label(4,5, "PO1234355");
sheet1.addCell(label);
copy.write();
copy.close();
}
catch(Exception e){
System.out.println("Could not get workbook. Error: " + e.toString());
}
}
これらは私が得る非常識な警告です:
Warning: Cannot read name ranges for BUY - setting to empty
Warning: Cannot read name ranges for Buyer - setting to empty
Warning: Cannot read name ranges for Casual_Buyer - setting to empty
Warning: Cannot read name ranges for Departments - setting to empty
Warning: Cannot read name ranges for Dept_No - setting to empty
Warning: Cannot read name ranges for Designer - setting to empty
Warning: Cannot read name ranges for Model - setting to empty
Warning: Cannot read name ranges for Seasons - setting to empty
Warning: Cannot read name ranges for Supplier - setting to empty
Warning: Cannot read name ranges for Technologist - setting to empty
Warning: Cannot read name ranges for Typed_by - setting to empty
Warning: Cannot read name ranges for YESNO - setting to empty
Warning: no filename property for drawing
Warning: no filename property for drawing
Warning: no filename property for drawing
Warning: no filename property for drawing
Warning: no filename property for drawing
Warning: no filename property for drawing
Warning: no filename property for drawing
Warning: no filename property for drawing
Warning: no filename property for drawing