以下のコードを試しましたが、うまくいきません。Excelドキュメントを作成して、開いたり閉じたりすることができません。
package tests;
import java.io.*;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.util.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class Xls_Reader {
Workbook wb = new XSSFWorkbook();
FileOutputStream fileOut = new FileOutputStream("workbook.xlsx");
}
次のエラーが発生します:
Default constructor can not handle exception type FileNotFoundException
thrown by implicit super constructor . Must define an explicit constructor.
誰かがPOIAPIでExcelファイルを作成する概念を理解するのを手伝ってもらえますか?