Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个将我们的数据结构转换为 excel 文件的应用程序。我们目前正在使用 POI 进行转换。
问题是 Cell 只支持字符串、数字和公式,而我们的数据结构支持图像。有没有办法将图像添加到单元格?
Excel 中没有图像单元格,您需要将图像添加到工作表中。
HSSFWorkbook workbook; workbook.addPicture(pngData, HSSFWorkbook.PICTURE_TYPE_PNG);