Poi operation Excel exception cannot get a text value from a numeric cell

Source: Internet
Author: User

Console throws exception:Java.lang.IllegalStateException:Cannot get a text value from a numeric cell

The above error occurred when parsing an Excel file with POI in Java, indicating that the value of the text type cannot be obtained from a cell of a numeric type.

When a POI operates Excel, the data cell has different types, and when we try to read a string from a number type cell and write to the database , cannot get a text value appears. Exception error from a numeric cell.

The workaround is to set the cell type first, and then you can read the pure number as a string type :

if (Row.getcell (0)!=null) {
Row.getcell (0). Setcelltype (cell.cell_type_string);
User.setnum (Row.getcell (0). Getstringcellvalue ());
}

Poi operation Excel exception cannot get a text value from a numeric cell

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.