(Fusions) XmlParser.getXmlData(fusionFile, Fusions.class);

-----------------------XmlParser.java-------------------------------------------------------

package com.yellowbook.presentation.analytics.utilty;

import java.io.File;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import com.yellowbook.presentation.analytics.demo.data.demoaccount.DemoAccounts;

public class XmlParser {

    /**
     * get the xml data by
     *
     * @param fileName
     *            - xml file name
     * @param c
     *            - class type
     * @return
     * @throws JAXBException
     */
    public static Object getXmlData(final String fileName, final Class c)
            throws Throwable {
        String package_path = c.getPackage().getName();
        JAXBContext jc = JAXBContext.newInstance(package_path);
        Unmarshaller mar = jc.createUnmarshaller();

        Object o = (Object) mar.unmarshal(new File(fileName));

        return o;
    }

    /**
     * write xml data to file
     *
     * @param fileName
     *            - xml file name
     * @param c
     *            - class type
     * @throws JAXBException
     */
    public static void writeXmlData(final String fileName, final Object obj)
            throws JAXBException {
        String package_path = obj.getClass().getPackage().getName();
        JAXBContext jc = JAXBContext.newInstance(package_path);
        Marshaller mar = jc.createMarshaller();
        File file = new File(fileName);
        mar.marshal(obj, file);
        
    }

}

---------------------------------ObjectFactory.java--------------------------------------------

package com.yellowbook.presentation.analytics.demo.data.fusion;

import javax.xml.bind.annotation.XmlRegistry;

@XmlRegistry
public class ObjectFactory {

    public ObjectFactory() {
    }

    public Fusions createFusions() {
        return new Fusions();
    }

    public Fusion createFusion() {
        return new Fusion();
    }
}
----------------------------------------------Fusions.java------------------------------
package com.yellowbook.presentation.analytics.demo.data.fusion;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "fusion"
})
@XmlRootElement(name = "Fusions")
public class Fusions {
    @XmlElement(name = "Fusion")
    protected List<Fusion> fusion;

    public List<Fusion> getFusion() {
        if (fusion == null) {
            fusion = new ArrayList<Fusion>();
        }
        return fusion;
    }
}

-------------------------------Fusion.java-------------------------------------------------------------

package com.yellowbook.presentation.analytics.demo.data.fusion;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
        "date",
        "impressions",
        "costWithMargin",
        "calls",
        "clicks"
})
@XmlRootElement(name = "Fusion")
public class Fusion {

    @XmlElement(name = "date", required = true)
    protected String date;
    @XmlElement(name = "impressions", required = true)
    protected String impressions;
    @XmlElement(name = "clicks", required = true)
    protected String clicks;
    @XmlElement(name = "costWithMargin", required = true)
    protected String costWithMargin;
    @XmlElement(name = "calls", required = true)
    protected String calls;

    public String getDate() {
        return date;
    }

    public void setDate(String date) {
        this.date = date;
    }

    public String getImpressions() {
        return impressions;
    }

    public void setImpressions(String impressions) {
        this.impressions = impressions;
    }

    public String getCostWithMargin() {
        return costWithMargin;
    }

    public void setCostWithMargin(String costWithMargin) {
        this.costWithMargin = costWithMargin;
    }

    public String getCalls() {
        return calls;
    }

    public void setCalls(String calls) {
        this.calls = calls;
    }

    public String getClicks() {
        return clicks;
    }

    public void setClicks(String clicks) {
        this.clicks = clicks;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值