Example usage for org.apache.poi.hssf.usermodel HSSFCell ENCODING_COMPRESSED_UNICODE

List of usage examples for org.apache.poi.hssf.usermodel HSSFCell ENCODING_COMPRESSED_UNICODE

Introduction

In this page you can find the example usage for org.apache.poi.hssf.usermodel HSSFCell ENCODING_COMPRESSED_UNICODE.

Prototype

short ENCODING_COMPRESSED_UNICODE

To view the source code for org.apache.poi.hssf.usermodel HSSFCell ENCODING_COMPRESSED_UNICODE.

Click Source Link

Usage

From source file:org.extremecomponents.table.view.XlsView.java

License:Apache License

private void setCellEncoding(HSSFCell cell) {
    if (encoding.equalsIgnoreCase("UTF")) {
        cell.setEncoding(HSSFCell.ENCODING_UTF_16);
    } else if (encoding.equalsIgnoreCase("UNICODE")) {
        cell.setEncoding(HSSFCell.ENCODING_COMPRESSED_UNICODE);
    }// ww w  .j  a v  a2 s  .  com
}