このライブラリを使用して Java プログラムをコンパイルしています。私はEclipseを使用していますが、コマンドラインからコンパイルしようとしています(コマンドラインから実行されます)。Eclipseで動作しているようです。
コマンドラインでこれを試してみましたが、うまくいっているようです:
javac -cp ../lib/jxl.jar Main.java
しかし、それは私にこれを与えます:
Main.java:5: cannot find symbol
symbol : class Reader
location: class Main
Reader excel_reader = new Reader();
^
Main.java:5: cannot find symbol
symbol : class Reader
location: class Main
Reader excel_reader = new Reader();
Main (メインメソッドのみを持つ) と Reader の 2 つのクラスしかありません。両方のファイルは、Eclipse ワークスペースの src/ フォルダーの下にあります。
読者クラス:
import java.io.File;
import java.io.IOException;
import jxl.Cell;
import jxl.CellType;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;
public class Reader {
private String inputFile;
public void setInputFile(String inputFile) {
this.inputFile = inputFile;
}
public void read() throws IOException {
File inputWorkbook = new File(inputFile);
Workbook w;
try {
w = Workbook.getWorkbook(inputWorkbook);
// Get the first sheet
Sheet sheet = w.getSheet(0);
// Loop over first 10 column and lines
for (int j = 0; j < sheet.getColumns(); j++) {
for (int i = 0; i < sheet.getRows(); i++) {
Cell cell = sheet.getCell(j, i);
CellType type = cell.getType();
if (type == CellType.LABEL) {
System.out.println("I got a label "
+ cell.getContents());
}
if (type == CellType.NUMBER) {
System.out.println("I got a number "
+ cell.getContents());
}
}
}
} catch (BiffException e) {
e.printStackTrace();
}
}
}
メインクラス
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
Reader excel_reader = new Reader();
excel_reader.setInputFile("Excel_Spreadsheets/Dictionary_Part2.xls");
excel_reader.read();
}
}