CSV ファイルを JSON 形式に変換しようとしましたが、ANT や MAVEN についてはわかりません。私はApache POIを使用しました。私はApache POIでこれをやろうとしています。それを行う他の方法はありますか?
これは私がやろうとしていたことですが、次のエラーが発生します --java.lang.ClassNotFoundException: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSheet
// JSON の構築を開始します。
JSONObject json = new JSONObject();
JSONArray rows=new JSONArray();
for ( Iterator<org.apache.poi.ss.usermodel.Row> rowsIT = sheet.rowIterator(); rowsIT.hasNext(); )
{
org.apache.poi.ss.usermodel.Row row = rowsIT.next();
JSONObject jRow = new JSONObject();
// Iterate through the cells.
JSONArray cells = new JSONArray();
for ( Iterator<Cell> cellsIT = row.cellIterator(); cellsIT.hasNext(); )
{
Cell cell = cellsIT.next();
cells.put( cell.getStringCellValue() );
}
jRow.put( "cell", cells );
rows.put( jRow );
}