gpt4 book ai didi

java - 如何在 java 中使用定界符从 xml 文件中读取键和值?

转载 作者:行者123 更新时间:2023-11-29 05:58:20 26 4
gpt4 key购买 nike

我想阅读以下 xml <LINE>使用java标记。你能帮忙吗?提前致谢。

<?xml version="1.0" encoding="UTF-8" ?> 
<LINE>002:OR,004:0001,002:01,002:01,007:SCEM_02,000:,007:590,000,002:KG,002:PC;/</LINE>

最佳答案

import java.util.regex.*;

public String extractLine(String xmlSource) {
Pattern p = Pattern.compile("<LINE>(.*?)</LINE>");
Matcher m = p.matcher(xmlSource);
boolean found = m.find();
if (!found)
return null;
return m.group(1);
}

关于java - 如何在 java 中使用定界符从 xml 文件中读取键和值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11166446/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com