我正在尝试使用java读取excel文件。在编译程序时我得到的错误是非法字符。帮我解决这个问题。这是代码
import java.io.IOException;
import java.io.*;
import java.util.Iterator;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.usermodel.HSSFRow;
public class Readingexcel {
public static void main(String[] args) {
try {
System.out.println("before reading");
POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("input.xlsx"));
HSSFWorkbook wb = new HSSFWorkbook(fs);
HSSFSheet sheet = wb.getSheet("first");
HSSFRow row;
HSSFCell cell;
String s;
int rows; // No of rows
rows = sheet.getPhysicalNumberOfRows();
System.out.println(rows);
System.out.println(sheet.getRow(1).getPhysicalNumberOfCells());
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
// s = cell.getData();
System.out.println(cell.getStringCellValue());
}
}
}
}
} catch (Exception ioe) {
ioe.printStackTrace();
}
}
}
编译程序时遇到错误,如
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\vino>cd C:\Program Files\jdk1.6.0_10\bin
C:\Program Files\jdk1.6.0_10\bin>javac Readingexcel.java
Readingexcel.java:1: illegal character: \187
import java.io.IOException;
^
Readingexcel.java:1: illegal character: \191
import java.io.IOException;
^
2 errors
任何人都可以帮我解决这个问题。
答案 0 :(得分:5)
我很确定这是BOM(Byte Order Marks)。确保使用正确的编码。也许在其他编辑器中打开文件并重新保存以删除BOM。例如,Nodepad ++可以帮助您。
祝你好运, 最大答案 1 :(得分:4)
您使用什么程序编辑源代码?看起来它正在插入一个BOM,这是javac不喜欢的。应该可以在编辑器的设置中禁用BOM。
答案 2 :(得分:1)
看起来您有BOM问题。在十六进制编辑器中打开文件,删除看起来很奇怪的第一个字节,然后在第一个导入行之前。