org.apache.poi.hssf.usermodel.HSSFWorkbook.convertLabelRecords()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(122)

本文整理了Java中org.apache.poi.hssf.usermodel.HSSFWorkbook.convertLabelRecords()方法的一些代码示例,展示了HSSFWorkbook.convertLabelRecords()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HSSFWorkbook.convertLabelRecords()方法的具体详情如下:
包路径:org.apache.poi.hssf.usermodel.HSSFWorkbook
类名称:HSSFWorkbook
方法名:convertLabelRecords

HSSFWorkbook.convertLabelRecords介绍

[英]This is basically a kludge to deal with the now obsolete Label records. If you have to read in a sheet that contains Label records, be aware that the rest of the API doesn't deal with them, the low level structure only provides read-only semi-immutable structures (the sets are there for interface conformance with NO impelmentation). In short, you need to call this function passing it a reference to the Workbook object. All labels will be converted to LabelSST records and their contained strings will be written to the Shared String tabel (SSTRecord) within the Workbook.
[中]

代码示例

代码示例来源:origin: org.apache.poi/poi

convertLabelRecords(records, recOffset);
RecordStream rs = new RecordStream(records, recOffset);
while (rs.hasNext()) {

代码示例来源:origin: com.haulmont.thirdparty/poi

convertLabelRecords(records, recOffset);
RecordStream rs = new RecordStream(records, recOffset);
while (rs.hasNext()) {

代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev

convertLabelRecords(records, recOffset);
RecordStream rs = new RecordStream(records, recOffset);
while (rs.hasNext()) {

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi

convertLabelRecords(records, recOffset);
RecordStream rs = new RecordStream(records, recOffset);
while (rs.hasNext()) {

相关文章

HSSFWorkbook类方法