JAXBContext 解析xml文件

1.xml文件 product.xml

<?xml version="1.0" encoding="UTF-8"?>
<template>
    <startRow>3</startRow>
    <columns>
        <column>
            <col>0</col>
            <notNull>true</notNull>
            <customValue>true</customValue>
            <valueField>supplierId</valueField>
        </column>
        <column>
            <col>1</col>
            <notNull>true</notNull>
            <valueField>money</valueField>
        </column>
    </columns>
</template>

2.新建对应的实体类 TempliateConfig.java和TemplateColumn.java

package com.dm.krystal.utils.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import java.io.Serializable;
@XmlAccessorType(XmlAccessType.FIELD)
public class TemplateColumn implements Serializable {
    @XmlElement(name = "col")
    int col;
    @XmlElement(name = "valueField")
    String valueField;
    @XmlElement(name = "notNull")
    boolean notNull = false;
    @XmlElement(name = "customValue")
    boolean customValue = false;
    //getset略
}
package com.dm.krystal.utils.xml;
import javax.xml.bind.annotation.*;
import java.util.List;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "template")
public class TempliateConfig {
    @XmlElement(name = "startRow")
    int startRow;
    @XmlElementWrapper(name="columns")
    @XmlElement(name = "column")
    List<TemplateColumn> columns;
   //getset略
}

3.main 方法

package com.dm.krystal.utils.xml;
import com.dm.krystal.utils.io.ResourceUtils;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
import javax.servlet.http.HttpServletRequest;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;

public class XmlTest {
  static   TempliateConfig templiateConfig;
    public TempliateConfig getTemplateConfig() {
        return templiateConfig;
    }
    //xml测试使用
    public static void main(String[] args) {
        try {
            JAXBContext jaxbContext = JAXBContext.newInstance(TempliateConfig.class);
            Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
            templiateConfig = (TempliateConfig) jaxbUnmarshaller.unmarshal(ResourceUtils.getResourceFileStream("classpath:excel/product.xml"));
            templiateConfig = (TempliateConfig) jaxbUnmarshaller.unmarshal(ResourceUtils.getFile("classpath:excel/product.xml"));
            templiateConfig = (TempliateConfig) jaxbUnmarshaller.unmarshal(ResourceUtils.getURL("classpath:excel/product.xml"));
            templiateConfig.getColumns();
            System.out.println(templiateConfig.getColumns().get(0).getCustomValue());
           // configSucc = true;
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (JAXBException e) {
            e.printStackTrace();
        }
    }
}
输出 

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值