• 大小: 1KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 语言: 其他
  • 标签: xml  java  

资源简介

获取xml文件中标签所对应的数据 比如:<MsgType>STHY15</MsgType>消息类型 输出:标记:MsgType,数据: STHY15

资源截图

代码片段和文件信息

package c3i.Package;

import java.io.File;
import java.io.FileReader;
import java.io.IOException;

public class GetInformation {

/**
 * @param args
 * @throws IOException 
 */
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
String xmlString = ““;
//char[] xmlChar = new char[1000];
//-------------------读取文件内容---------------------------------------
File xmlFile = new File(“D://C3ISYS//info.xml“);
FileReader xmlReader = new FileReader(xmlFile);
int n;
while((n = xmlReader.read())!=-1){
xmlString += (char)n;
}
xmlFile = null;
xmlReader.close();
//System.out.println(xmlString);
//-------------------分析文件内容---------------------------------------
String s = ““;
for (int i=45; i < xmlSt

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1387  2013-09-12 11:11  获取xml标签所对应的数据.java
     文件         878  2013-09-12 10:45  info.xml

评论

共有 条评论