本文整理了Java中org.apache.poi.hssf.usermodel.HSSFWorkbook.convertLabelRecords()
方法的一些代码示例,展示了HSSFWorkbook.convertLabelRecords()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HSSFWorkbook.convertLabelRecords()
方法的具体详情如下:
包路径:org.apache.poi.hssf.usermodel.HSSFWorkbook
类名称: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()) {
内容来源于网络,如有侵权,请联系作者删除!