If I understand your problem is Encoding while using POI to write to Excel file. If it is so you can try changing your cell object encoding like this example:
cell.setEncoding(HSSFCell.ENCODING_UTF_16); This is required when dealing with non English characters wich I think you have "ŠšŽž character" looks like Polish or some other Language. It is likely your Java program pick up Locale or OS Language and encodes these caracters according to that locale. The way to fix this is to specify encoding for each cell. Igor --- Birendar Waldiya <[EMAIL PROTECTED]> wrote: > My problem is that ŠšŽž character when read > from text file by a text parser go correct in the > database but when they are entered by the xls > parser form > xls file they go wrong. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta Poi Project: http://jakarta.apache.org/poi/
