2

我已经阅读了使用 apache-poi 的 excel 文档。具有以下记录的excel文档:

A1 A2 A3 A4

A1 A2 B3 B4

我想将它们转换为 JSON 数组,如

{ A1 : {A2 : {A3 : {A4 : some_value } } , {B3 : {B4 : some_value } } } }

实际上它很容易转换为 XML。请告诉我如何解决这个问题。只有提示就足够了。

4

2 回答 2

3

您可以参考以下代码:

FileInputStream inp = new FileInputStream( file );
Workbook workbook = WorkbookFactory.create( inp );

// Get the first Sheet.
Sheet sheet = workbook.getSheetAt( 0 );

    // Start constructing JSON.
    JSONObject json = new JSONObject();

    // Iterate through the rows.
    JSONArray rows = new JSONArray();
    for ( Iterator<Row> rowsIT = sheet.rowIterator(); rowsIT.hasNext(); )
    {
        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 );
    }

    // Create the JSON.
    json.put( "rows", rows );

// Get the JSON text.
return json.toString();
于 2012-07-05T12:36:24.007 回答
1

获取 Java 对象中的数据后,您可以使用这个简单的 JSON 库创建 JSON

http://code.google.com/p/google-gson/

但是你必须在 java 对象中创建那种结构。

于 2012-07-05T12:06:38.247 回答