我是靠谱客的博主 整齐蜜粉,最近开发中收集的这篇文章主要介绍xml类的封装,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

# coding=UTF-8
import xml.etree.ElementTree as ET
import traceback

#封装自己的xml解析工具类
#创建时传入文件路径
#根据传入的XPath表达式获取结果,返回集合

class XML:
    def __init__(self,path):
        self.path = path
        try:
            #根节点
            self.root = ET.parse(self.path)
        except:
            print u'待解析文件加载异常,未找到根节点'+traceback.print_exc()
            self.root = None

    def getElementText(self,xpath):
        result = None
        if self.root is not None:
            try:
                element = self.root.find(xpath)
                result = element.text
            except:
                print u'未找到对象'+xpath
                traceback.print_exc()
        return result


    def getElementAttrib(self,xpath,attr_name):
        result = None
        if self.root is not None:
            try:
                element = self.root.find(xpath)
                result = element.attrib[attr_name]
            except:
                print u'未找到对象'+xpath
                traceback.print_exc()
        return result

    # def getElements(self,xpath):
    #     if self.root is not None:
    #         try:
    #             elements = self.root.findall(xpath)
    #             result = []
    #             for element in elements:
    #                 return result.append(element)
    #         except:
    #             print u'未找到对象'+xpath
    #             traceback.print_exc()

最后

以上就是整齐蜜粉为你收集整理的xml类的封装的全部内容,希望文章能够帮你解决xml类的封装所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部