0

私はactivePivotが初めてです。mdx クエリを呼び出して、CellSetDTO を取得しました。この CellSetDTO オブジェクトを CSV、Excel、またはその他の種類の形式に変換するために利用できるライブラリ コードはありますか?

CellSetDTO クラスの quartetfs から javadoc を見ていますが、javaDoc には説明がありません。または、独自のコードを記述して CSV を生成することもできますが、これは初めてであり、javaDoc に説明がないため、開始するのは少し困難です。

ドキュメントへのポインタは大歓迎です。

ありがとう、グレース

4

1 に答える 1

1

サンドボックス プロジェクトにあるサンプルを使用できます。CellSetPrinter クラスを参照し、コンストラクター引数で CellSetDTO を設定します。CellSetPrinter クラスを参照してください。

public class CellSetPrinter {

protected final CellSetDTO cellSet;

protected final AxisDTO slicer;

protected final List<AxisDTO> axes;

protected final List<CellDTO> cells;

public CellSetPrinter(CellSetDTO cellSet) {
    this.cellSet = cellSet;
    this.axes = cellSet.getAxes().getAxis();
    this.slicer = cellSet.getSlicerAxis();
    this.cells = cellSet.getCells().getCell();
}

/**
 * Compute axis positions from the cell ordinal with the classic formula:
 * <ul>
 * <li>(x0, x1, x2) -> x0 + x1 * n0 + x2 * n1 * n2
 * <li>ordinal -> (ordinal % n0, (ordinal / n0) % n1, (ordinal / (n0*n1)) % n2)
 * </ul>
 * 
 * @param ordinal
 * @return tuple expressed by coordinates
 */
protected List<String> getTuple(int ordinal) {
    List<String> tuple = new ArrayList<>();

    // Lookup positions on axes
    final int[] axisCoordinates = new int[axes.size()];

    int coeff = 1;
    for(int a = 0; a < axisCoordinates.length; a++) {
        int positionCount = axes.get(a).getPositions().getPosition().size();
        axisCoordinates[a] = (ordinal / coeff) % positionCount;
        coeff *= positionCount;
    }

    for(int a = 0; a < axisCoordinates.length; a++) {
        AxisPositionDTO position = axes.get(a).getPositions().getPosition().get(axisCoordinates[a]);
        for(MemberDTO member : position.getMembers().getMember()) {
            for(String pathElement : member.getPath().getItems().getItem()) {
                if(!"AllMember".equals(pathElement)) {
                    tuple.add(pathElement);
                }
            }
        }
    }

    // Append slicer content
    for(AxisPositionDTO position : slicer.getPositions().getPosition()) {
        for(MemberDTO member : position.getMembers().getMember()) {
            for(String pathElement : member.getPath().getItems().getItem()) {
                if(!"AllMember".equals(pathElement)) {
                    tuple.add(pathElement);
                }
            }
        }
    }
    return tuple;
}

public void print(PrintStream out) {
    for(CellDTO cell : cells) {
        System.out.println(getTuple(cell.getOrdinal()) + " " + cell.getFormattedValue());
    }
}
}
于 2014-03-31T02:50:29.837 に答える