RT。。。我写的程序只能读取单元格的数据。。。不知道怎么读取单元格的颜色。。字体等属性啊
//读取Excel的类
package com.jxl.projects;
import java.io.*;
import java.util.*;
import jxl.*;
import jxl.read.biff.BiffException;
public class huoqu {
public static void main(String[] args) {
// TODO 自动生成方法存根
try {
Workbook book = Workbook.getWorkbook(new File("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();
//得到第x列第y行的单元格
Cell cell1 = sheet.getCell(x, y);
String result=cell1.getContents();
System.out.println("从test.xls文件中读出单元格的内容为"+result);
book.close();
} catch (BiffException e) {
// TODO 自动生成 catch 块
System.out.println(e);
} catch (IOException e) {
// TODO 自动生成 catch 块
System.out.println(e);;
}
}
}