使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10

使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10 [问题点数:40分,结帖人xieyongqiu]

不显示删除回复
           
显示所有回复
           
显示星级回复
           
显示得分回复
           
只显示楼主
          收藏

关注
xieyongqiu
maobingxixi
本版等级:

结帖率:71.43%

楼主发表于: 2010-09-13 17:33:03

使用POI 读取 Excel 文件,读取手机号码 变成  1.3471022771E10   如何 解决?

更多2分享到:

对我有用[0] 丢个板砖[0] 引用 | 举报| 管理

回复次数:15

关注
eemean
eemean
本版等级:


#1 得分:5回复于: 2010-09-13 17:34:34

你要多判断一下,CELL TYPE好像有四种类型的,,

对我有用[0] 丢个板砖[0] 引用 | 举报| 管理

关注
xieyongqiu
maobingxixi
本版等级:


#2 得分:0回复于: 2010-09-13 17:41:35

if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {

DateFormat format = new SimpleDateFormat(DateUtil.YYYY_MM_DD);

if(HSSFDateUtil.isCellDateFormatted(cell)) {
     // 是否为日期型
      str = format.format(cell.getDateCellValue());
    } else {
     // 是否为数值型
      double d = cell.getNumericCellValue();
     if (d - (int) d < Double.MIN_VALUE) { 
     // 是否为int型
      str = Integer.toString((int) d);
     } else { 
      System.out.println("double.....");
      // 是否为double型
      str = Double.toString(cell.getNumericCellValue());
     }
    }
 
   System.out.println("type=="+cell.getCellType() );
   System.out.println("cell=="+str);

}else if (cell.getCellType() == HSSFCell.CELL_TYPE_STRING) {
str = cell.getRichStringCellValue().getString();
}else if (cell.getCellType() == HSSFCell.CELL_TYPE_FORMULA) {
 str = cell.getCellFormula();
}else if (cell.getCellType() == HSSFCell.CELL_TYPE_BLANK) {
 str = " ";
}else if (cell.getCellType() == HSSFCell.CELL_TYPE_ERROR) {
 str = " ";
}

这几种 类型  都做判断了   依然还是    1.3471022771E10

对我有用[0] 丢个板砖[1] 引用 | 举报| 管理

关注
xieyongqiu
maobingxixi
本版等级:


#3 得分:0回复于: 2010-09-13 17:51:55

解决了    是一个转换问题

//将被表示成1.3922433397E10的手机号转化为13922433397,不一定是最好的转换方法
  DecimalFormat df = new DecimalFormat("#");

System.out.println("type666=="+df.format(cell.getNumericCellValue()));

时间: 2024-10-14 23:58:54

使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10的相关文章

采用OleDB读取EXCEL文件 读取数字后,字符串无法读取

很多人采用OleDB读取EXCEL文件的时候会发现,当一列数据以数字开头的时候,后面的字符串无法读取,今天就给大家分享一下解决此问题的小窍门. 1.把列标题当做数据来读取(HDR=NO设置把第一行当做数据而不是表头来处理):  string strConn = "Provider=Microsoft.ACE.OLEDB.12.0;" + "Data Source=" + fileName + ";" +                     &

java使用POI实现excel文件的读取,兼容后缀名xls和xlsx

需要用的jar包如下: 如果是maven管理的项目,添加依赖如下: <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.14</version> </depen

使用Apache下poi创建和读取excel文件

一:使用apache下poi创建excel文档 1 @Test 2 /* 3 * 使用Apache poi创建excel文件 4 */ 5 public void testCreateExcel() { 6 // 1:创建一个excel文档 7 HSSFWorkbook workbook = new HSSFWorkbook(); 8 // 2:创建一个sheet工作表,名为“学生成绩” 9 HSSFSheet sheet = workbook.createSheet("学生成绩");

使用Apache POI 读取Excel文件

生活中用到用到Excel文件的情况很多,什么商品进货单,产品维修单,餐厅的营业额等等.作为程序员,我们该如何读取Excel文件,获取我们想要的资源呢.本篇将讲解如何使用Apache POI读取Excel文件. 准备工作: 1)Apache POI 开发jar包 2)Excel资源文件,包括Excel2003,Excel2007这两种版本分别对应xls.xlsx文件. 本篇已经为您做好准备工作,请点击此处,下载资源文件,你也可以浏览Apace POI官网了解更多详细信息. 简要流程: 获取Work

使用jxl,poi读取excel文件

作用:在java后台添加一个方法,读取导入的excel内容,根据需要返回相应的sql语句,以完成对临时表的插入操作. 使用jxl读取excel文件 package com.sixthf.bi.sapp.util; import java.io.IOException; import java.io.InputStream; import jxl.Sheet; import jxl.Workbook; import jxl.read.biff.BiffException; import org.a

POI创建和读取excel文件

Poi创建excel文件 所需jar:poi-3.11-20141221.jar  commons-io-2.2.jar public class PoiExpExcel { /**     * POI生成Excel文件     */    public static void main(String[] args) { String[] title = {"id","name","sex"};                //新建工作簿  

读取Excel文件写入数据库 Mybatis , POI , JXL

废话不多说,直接上代码结构图 所用到的lib包 Students 实体类 package com.test.model; public class Students { private int id; private String username; private int age; private int salary; public int getId() { return id; } public void setId(int id) { this.id = id; } public St

使用poi读取excel文件 Cannot get a text value from a numeric cell

我这样转换得到一个excel文本域的值 Cell cell = row.getCell(c); cell.setCellType(Cell.CELL_TYPE_STRING); String parkName = cell.getStringCellValue(); 某些时候,读取 excel 文件会出现如下错误 java.lang.IllegalStateException: Cannot get a text value from a numeric cell at org.apache.p

java poi读取excel文件

poi-3.9-20121203.jar poi-ooxml-3.9-20121203.jar poi-ooxml-schemas-3.9-20121203.jar stax-api-1.0.1.jar xmlbeans-2.3.0.jar 上面几个jar包缺一不可,有时候会出现ClassNotFound之类的错误,是因为jar缺少或不兼容的原因,上面jar包已经过测试,可以使用. 读取excel文件代码如下: public class ExcelUtils {// 对外提供读取excel文件的