On Tue, 19 Apr 2011, kiteflo wrote:
Can anybody tell me how to recognize percentage values during parsing the
excel? I need sth like this...:

You'll want to look at the DataFormat on the cell's style. Something like
   if("0%".equals( cell.getCellStyle().getDataFormatString() )) {
     // Percent
   }

Nick

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to