我是birt的新手,我正在尝试使用xml作为数据源,但我觉得它没有用。 我不知道是否需要指定更多数据,但我没有找到任何指定使用xml作为数据源指定的内容。
我使用下一个代码:
/** Set data source */
void buildDataSource() throws SemanticException {
OdaDataSourceHandle dsHandle = this.efactory.newOdaDataSource("Data Source", "org.eclipse.datatools.enablement.oda.xml");
dsHandle.setProperty("FILELIST", "http://localhost:8080/BirtIntegrationImproved/ReportXmlDatasource/books.xml");
this.design.getDataSources().add(dsHandle);
}
/** Set data set */
void buildDataSet() throws SemanticException {
OdaDataSetHandle dsHandle = this.efactory.newOdaDataSet("ds","org.eclipse.datatools.enablement.oda.xml.dataSet");
dsHandle.setDataSource("Data Source");
this.design.getDataSets().add(dsHandle);
}
/** List of columns */
ArrayList<String> cols = new ArrayList<String>();
cols.add("id");
cols.add("author");
cols.add("title");
cols.add("genre");
cols.add("price");
buildDataSource();
buildDataSet();
TableHandle table = this.efactory.newTableItem("table", cols.size());
table.setWidth("100%");
table.setDataSet(this.design.findDataSet("ds"));
PropertyHandle computedSet = table.getColumnBindings();
ComputedColumn cs1 = null;
for( int i=0; i < cols.size(); i++) {
cs1 = StructureFactory.createComputedColumn();
cs1.setName((String)cols.get(i));
cs1.setExpression("dataSetRow[\"" + (String)cols.get(i) + "\"]");
computedSet.addItem(cs1);
}
// table header
RowHandle tableheader = (RowHandle) table.getHeader().get(0);
for(int i=0; i < cols.size(); i++) {
LabelHandle label1 = this.efactory.newLabel((String)cols.get(i));
label1.setText((String)cols.get(i));
CellHandle cell = (CellHandle) tableheader.getCells().get(i);
cell.getContent().add(label1);
}
// table detail
RowHandle tabledetail = (RowHandle) table.getDetail().get(0);
for(int i=0; i < cols.size(); i++) {
CellHandle cell = (CellHandle) tabledetail.getCells().get(i);
DataItemHandle data = this.efactory.newDataItem("data_"+(String)cols.get(i));
data.setResultSetColumn((String)cols.get(i));
System.out.println("ResultSetColumn: " + data.getResultSetColumn());
cell.getContent( ).add(data);
}
有人知道什么是错的吗?
谢谢!
答案 0 :(得分:0)
要从xml获取数据作为数据源,您需要按照以下步骤操作:
1.使用填充到系统上任何路径的数据保存xml
2.将此路径映射到数据源
3.在数据集中映射要在报表上看到的xml中的字段。
现在可以使用与从数据库检索数据时相同的方式设计报告。