永发信息网

求解java读取Excel问题

答案:2  悬赏:10  手机版
解决时间 2021-05-12 00:14
  • 提问者网友:心如荒岛囚我终老
  • 2021-05-11 14:34

程序如下:

//读取Excel的类

import java.io.*;
import java.util.*;
import jxl.*;
import jxl.read.biff.BiffException;


public class ReadExcel{

public static void main(String[] args) {
try {
Workbook book = Workbook.getWorkbook(new File("1-1.xls"));
Sheet sheet = book.getSheet(0);
System.out.println("请输入要读取的单元格");
Scanner in = new Scanner(System.in);
int x = in.nextInt();
in = new Scanner(System.in);
int y = in.nextInt();

Cell cell1 = sheet.getCell(x,y);
String result = cell1.getContents();
if (cell1.getType() == CellType.NUMBER)
{
NumberCell nc = (NumberCell) cell1;
System.out.println("Cell(x, y)" + " value : " + nc.getValue() + "; type : " + cell1.getType() +";Format:"+cell1.getCellFormat());
}else
System.out.println("Cell(x, y)" + " value : " + cell1.getContents() + "; type : " + cell1.getType() );
book.close();
} catch (BiffException e) {
// TODO 自动生成 catch 块
System.out.println(e);
} catch (IOException e) {
// TODO 自动生成 catch 块
System.out.println(e);;
}

}
}

本来想用getFormat()读取自定义类型

结果读出来变成 jxl.biff.。。。。。。。。。。

怎么才能正确地读出自定义类型啊????

最佳答案
  • 五星知识达人网友:長槍戰八方
  • 2021-05-11 15:01
不能直接读取自定义类型的。。要一个一个读。。那个类型是由很多类型构成的,getFormat只是读出一个
全部回答
  • 1楼网友:你可爱的野爹
  • 2021-05-11 15:08
Cell提供了一个getType方法能够返回单元格的类型信息,同时JXL提供了一个CellType类用来预设Excel中的类型信息,而且JXL提供了一些Cell类的子类用来分别用来表示各种类型的单元格,如LabelCell,NumberCell,DateCell分别表示字符、数值、日期类型的单元格。所以我们可以这样写: if (c2.getType() == CellType.NUMBER) { NumberCell nc = (NumberCell) c2; numberb2 = nc.getValue(); }
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯