解析String式的节点

import java.io.StringReader;

import org.jdom.Document;
import org.jdom.input.SAXBuilder;
public class TestStr
{
    public static void main(String[] args)
    {
        StringBuffer sf = new StringBuffer();
        sf.append("").append("广州")
                .append("CHABSCB")
                .append("C12DLS6")
                .append("+cell=G27JFL1")
                .append("534")
                .append("环境")
                .append("2008-12-10")
                .append("CMCC-GZ-YBGZ-1020")
                .append("2008-12-10")
                .append("");
        System.out.println(sf);
        
        try
        {
            Document doc = new SAXBuilder().build(new StringReader(sf.toString()));
            String cityname = doc.getRootElement().getChildText("cityname");
            String bsc = doc.getRootElement().getChildText("bsc");
            String nename = doc.getRootElement().getChildText("nename");
            String alarmunit = doc.getRootElement().getChildText("alarmunit");
            String alarmtypeid = doc.getRootElement().getChildText("alarmtypeid");
            String alarmtype = doc.getRootElement().getChildText("alarmtype");
            String eventtime = doc.getRootElement().getChildText("eventtime");
            String sheetid = doc.getRootElement().getChildText("sheetid");
            String sheettime = doc.getRootElement().getChildText("sheettime");
            System.out.println(cityname);
            System.out.println(bsc);
            System.out.println(nename);
            System.out.println(alarmunit);
            System.out.println(alarmtypeid);
            System.out.println(alarmtype);
            System.out.println(eventtime);
            System.out.println(sheetid);
            System.out.println(sheettime);
           
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
    }

你可能感兴趣的:(java)