Backed out encoding default

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352758 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-07-05 05:30:30 +00:00
parent a462169805
commit 3292424c37
1 changed files with 3 additions and 2 deletions

View File

@ -153,7 +153,7 @@ public class HSSFCell
private String stringValue; private String stringValue;
private boolean booleanValue; private boolean booleanValue;
private byte errorValue; private byte errorValue;
private short encoding = ENCODING_UTF_16; private short encoding = ENCODING_COMPRESSED_UNICODE;
private Workbook book; private Workbook book;
private Sheet sheet; private Sheet sheet;
//private short row; //private short row;
@ -655,7 +655,8 @@ public class HSSFCell
} }
/** /**
* set a string value for the cell. * set a string value for the cell. Please note that if you are using
* full 16 bit unicode you should call <code>setEncoding()</code> first.
* *
* @param value value to set the cell to. For formulas we'll set the formula * @param value value to set the cell to. For formulas we'll set the formula
* string, for String cells we'll set its value. For other types we will * string, for String cells we'll set its value. For other types we will