关于java 对xml 的简单读写操作

xml格式:
	
<root>
	<divice type="people">
		<productClass name="jack">
			<age>20</age>
		</productClass>
	</divice>
</root>







//java代码:
public void getSeXmlDate(String str,String age){
		
		File file =new File("d:\abc.xml");
		Document doc = null;
		try {
			SAXBuilder sb = new SAXBuilder();
			doc = sb.build(file.getAbsolutePath());
		} catch (Exception ex) {
			LOGGER.error(ex);
		}
		
		Element root = doc.getRootElement();
		for (int i = 0; i < root.getChildren().size(); i++) 
		{
			Element ee = (Element) root.getChildren().get(i);
			if (ee.getAttributeValue("type").equalsIgnoreCase("people")) 
			{
				for (int j = 0; j < ee.getChildren().size(); j++) 
				{
					Element el = (Element) ee.getChildren().get(j);
					if (el.getAttributeValue("name").equalsIgnoreCase("jack")) 
					{
						Element ele = el.getChild("age");//得到需要读写的节点
						try 
						{
							if(str.equals("get"))
							{
								refreshDate = Integer.parseInt(ele.getTextTrim());//读出节点值
							}else if(str.equals("set"))
							{
								ele.setText(age);//修改节点值
								XMLOutputter outputter=new XMLOutputter();
							   	outputter.output(doc,new FileOutputStream(d:\abc.xml));//写入文件流,修改xml内容
							}
						} catch (Exception es) 
						{
							LOGGER.error(es);
							
						}
					}	
				}
			}
		}
	}





评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值