Uses of Class
loci.poi.hssf.record.UnicodeString
-
Packages that use UnicodeString Package Description loci.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.loci.poi.hssf.record Record package contains class representations for XLS binary strutures. -
-
Uses of UnicodeString in loci.poi.hssf.model
Methods in loci.poi.hssf.model that return UnicodeString Modifier and Type Method Description UnicodeString
Workbook. getSSTString(int str)
given an index into the SST table, this function returns the corresponding String valueMethods in loci.poi.hssf.model with parameters of type UnicodeString Modifier and Type Method Description int
Workbook. addSSTString(UnicodeString string)
Adds a string to the SST table and returns its index (if its a duplicate just returns its index and update the counts) ASSUMES compressed unicode (meaning 8bit) -
Uses of UnicodeString in loci.poi.hssf.record
Methods in loci.poi.hssf.record that return UnicodeString Modifier and Type Method Description UnicodeString
SSTRecord. getString(int id)
Get a particular string by its indexUnicodeString
RecordInputStream. readUnicodeString()
Returns an excel style unicode string from the bytes reminaing in the record.Methods in loci.poi.hssf.record with parameters of type UnicodeString Modifier and Type Method Description int
SSTRecord. addString(UnicodeString string)
Add a string.
-