我应该导入什么才能正确使用以下代码?

时间:2012-12-03 22:48:02

标签: java android

您好我试图将Excel文件读入我的Android应用程序。我尝试使用此代码:

try {
    POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(file));
    HSSFWorkbook wb = new HSSFWorkbook(fs);
    HSSFSheet sheet = wb.getSheetAt(0);
    HSSFRow row;
    HSSFCell cell;

    int rows; // No of rows
    rows = sheet.getPhysicalNumberOfRows();

    int cols = 0; // No of columns
    int tmp = 0;

    // This trick ensures that we get the data properly even if it doesn't start from first few rows
    for(int i = 0; i < 10 || i < rows; i++) {
        row = sheet.getRow(i);
        if(row != null) {
            tmp = sheet.getRow(i).getPhysicalNumberOfCells();
            if(tmp > cols) cols = tmp;
        }
    }

    for(int r = 0; r < rows; r++) {
        row = sheet.getRow(r);
        if(row != null) {
            for(int c = 0; c < cols; c++) {
                cell = row.getCell((short)c);
                if(cell != null) {
                    // Your code here
                }
            }
        }
    }
} catch(Exception ioe) {
    ioe.printStackTrace();
}

我想知道我是否应该导入任何内容或任何库?

1 个答案:

答案 0 :(得分:0)

如果你使用Eclipse作为你的IDE(我假设你是因为这是Android相关的)你可以按ctrl + shift + O它会自动导入你需要的任何东西,假设你的构建路径中包含了库。但是,听起来您没有Apache POI库。首先,您需要download库。下载后,您需要使用以下方法将它们添加到构建路径:(再次假设您使用Eclipse作为IDE)

  1. 在项目资源管理器中右键单击您的项目。
  2. 选择构建路径 - &gt;配置构建路径
  3. 选择库标签。
  4. 点击“添加JAR ...”
  5. 查找并选择刚刚下载的JAR文件。 (您可能需要将JAR复制到项目中,以便能够选择它)
  6. 或者,您可以将库添加到其中一个项目文件夹(通常是“lib”文件夹),在Eclipse中右键单击它并选择“添加到构建路径”。

    现在应该将其添加到您的构建路径中。再次尝试按ctrl + shift + O,将为您进行必要的导入。