今天有个人加了我,也不清楚,为什么就淘汰了我,可能不喜欢我这样随意的人吧,或者是他有他的苦衷吧,不过我是不会求他的,因为现在对于我来说,求这个词还不是那么必要。
今天时间xml,中途出了很多差错呀,一开始是因为win8,自己点myeclipse的时候没有点以管理员身份运行,导致tomcat出现不知明的严重错误,让自己把tomcat卸载了重装,浪费了很多时间。另外和朋友聊天也浪费了很多时间,主要是关于游戏方面的探究,这时间也倒不算是浪费了,毕竟是自己学习了。
今天实现了简单的xml技术,xml技术其实就是自定义标签的技术,扩充了标签的种类,一个结构一个结构的写,就想结构体一样,如果想显示出来就家CSS.
贴出样例:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="MyCss.css"?>
<xml-body>
<peoples>
<people>
<name>
lishuo
</name>
<age class="wusong" id="lishuo">
15
</age>
<sex>
male
</sex>
</people>
<people>
<name>
wusongsong
</name>
<age class="wusong">
161
</age>
<sex>
female
</sex>
</people>
</peoples>
</xml-body>
@CHARSET "UTF-8";
name
{
display: bolock;
font-size: 30pt;
color: blue;
}
sex
{
display: table;
font-size: 20pt;
color: green;
}
age.wusong
{
display: table;
font-size: 15pt;
color: olive;
font-style: inherit;
}
#lishuo
{
display: table;
font-size: 15pt;
color: red;
font-style: inherit;
}