这是我的问题:我必须使用BeanIO来读取CSV。 此CSV类似于:
s1_el1;s1_el2;s1_el3;s1_el4;X1;Y1;Z1
s2_el1;s2_el2;s2_el3;s2_el4;X2;Y2;Z2
s2_el1;s2_el2;s2_el3;s2_el4;X3;Y3;Z3
其中sN_elM(其中N和M是行和列的增量值)必须放在一个部分(BeanIO部分)中。
我实际拥有的是这样的映射XML:
<?xml version="1.0" encoding="UTF-8"?>
<beanio xmlns="http://www.beanio.org/2012/03" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
<stream name="fileTabellaSconti" format="csv">
<parser>
<property name="delimiter" value=";" />
<property name="unquotedQuotesAllowed" value="true" />
<property name="whitespaceAllowed" value="true" />
</parser>
<record name="tabellaSconti" class="map">
<segment name="sconto" class="map" >
<field name="categoria" />
<field name="nome" />
<field name="tipologia" />
<field name="profilo" />
</segment>
<field name="valoreSconto" type="java.lang.Integer" />
<field name="codiceSts" />
<field name="scontoEquivalente" type="java.lang.Integer" />
</record>
</stream>
</beanio>
在我的“writer()”函数中,我这样做:
public static void writer( File csv_file )
{
factory.load(new File(user_dir+"/docroot/WEB-INF/src/it/saleshub/csv/mapping/map_sconto.xml"));
BeanWriter out = factory.createWriter( "fileTabellaSconti", csv_file );
int c = 0;
while (c < 5)
{
c++;
HashMap<String, Object> record = new HashMap<String, Object>();
HashMap<String, Object> sconto = new HashMap<String, Object>();
sconto.put( "categoria", "cat_"+c );
sconto.put( "nome", "nome_"+c );
sconto.put( "tipologia", "tipologia_"+c );
sconto.put( "profilo", "profilo_"+c );
record.put( "sconto" , sconto );
record.put( "valoreSconto", new Integer(c) );
record.put( "codiceSts", "sts_"+c );
record.put( "scontoEquivalente",new Integer(c) );
System.out.println(record);
out.write(record);
}
out.flush();
out.close();
}
但是每次我使用这个函数时,代码都会向我显示这个异常:
Bean identification failed: no record or group mapping for bean class 'class java.util.HashMap' [...]
我的错误在哪里? 我认为我使用的是错误的段,但我找不到任何关于如何正确使用它的文档。
答案 0 :(得分:1)
问题在于您的映射文件和您的pojo类。
对于映射文件中定义的每个字段,应该在父标记中定义的类或者记录中使用setter和getter方法。
在这里你使用了一个我认为在你的代码中不能用作pojo的类映射。此外,如果要在段上使用集合,则需要使用集合属性并将值作为映射或列表提供。
<record name="tabellaSconti" class="com.test.Parent">
<segment name="scontos" collection="list" class="com.test.Sconto" >
<field name="categoria" />
<field name="nome" />
<field name="tipologia" />
<field name="profilo" />
</segment>
<field name="valoreSconto" type="java.lang.Integer" />
<field name="codiceSts" />
<field name="scontoEquivalente" type="java.lang.Integer" />
</record>
在com.test.Parent中你必须定义getScontos&amp; setScontos方法以及其他字段输出的getter和setter方法,同样在Sconto类中,您必须为segment中定义的所有字段定义getter和setter。
最后主要类中的代码将是
Parent record = new Parent;
Sconto sconto = new Sconto();
List<Sconto> scontos = new ArrayList<Sconto>();
sconto.setCategoria("cat_"+c );
sconto.setNome("nome_"+c );
sconto.setTipologia("tipologia_"+c );
sconto.setProfilo("profilo_"+c );
scontos.add(sconto);
record.setScontos(scontos);
-------
---------
out.write(record);