<?xml version="1.0" encoding="utf-8" ?> <!--this is a test about xml.--> <collection shelf="New Arrivals"> <movie title="Enemy Behind"> <type>War, Thriller</type> <format>
1.sys模块 import sys sys.path()#打印系统path sys.version()#解释程序版本信息 sys.platform()#系统平台 sys.exit(0)#退出程序 command=sys.argv[1]#从程序外部获取参数 sys.stdout.write('#')#与print相同,区别是刷进缓存 # 例子 import time for i in range(10): sys.stdout.write('#') time.sleep(1) sys.stdou
1.XML简介 xml用到的地方:tomcat配置文件 1) xml 指可扩展标记语言(Extensible Markup Language) 2) xml 被设计用于结构化.存储和传输数据 3) xml 是一种标记语言,很类似于HTML 4) xml 没有像HTML那样具有预定义标签,需要程序员自定义标签 5) xml 被设计为具有自我描述性,并且是W3C的标准. 2.xml和html的区别: html是xml的一种特例.html里面的标签全都是已经预定义好的,都是有含义的. xml的数据存储
<?/** * xml2array() will convert the given XML text to an array in the XML structure. * Link: http://www.bin-co.comphp/scripts/xml2array/ * Arguments : $contents - The XML text * $get_attributes - 1 or 0. If this is 1 the function wil
using UnityEngine; using System.Collections; using System.Linq; using System.Xml.Linq; using System; public class XML { //static string xmlpath = Application.persistentDataPath + @"\myXML";//平台相关的路径(移动端) static string xmlpath=Application.dataPat