Use POI to import Excel exception cannot get a text value from a numeric cell address

Source: Internet
Author: User

When you manipulate Excel because the Excel data cell has a different type, the cannot get a text value from a numeric cell's exception error occurs.

Exception reason: The Excel data cell has different types, and when we try to read a string from a numeric type cell and write to the database, a cannot get a text value from a numeric cell exception error occurs.

This exception is common in code similar to the following: Row.getcell (i). Getstringcellvalue ();

WORKAROUND: First set the cell type, convert the other type to string type first

Hssfcell cell = Row.getcell (j);
if (Row.getcell (j)!=null) {
Row.getcell (j). Setcelltype (cell.cell_type_string);
}
String value = Cell.getstringcellvalue ();

Use POI to import Excel exception cannot get a text value from a numeric cell address

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.