- “’,age:” + etAge.getText().toString() + “}”;
} else {
strMsg = “{staff:[{name:’” + etName.getText().toString()
- “’,age:” + etAge.getText().toString() + “}”;
}
Toast.makeText(Main.this, “Add Succcess!”, Toast.LENGTH_SHORT)
.show();
etAge.setText("");
etName.setText("");
} else if (v == btnJson) {
strJsonRes = “”;
strJsonRes = strMsg + “]}”;
tvJson.setText(strJsonRes);
}
}
}
private void MsgToJson() {
btnAdd.setOnClickListener(new onClickListenerImp());
btnJson.setOnClickListener(new onClickListenerImp());
}
private void JsonToMsg() {
strJson = “{staff:[{name:‘Alex’,age:21},{name:‘Zhou’,age:22},{name:‘Anne’,age:23}],company:‘T-Chip’}”;
staffInfo = “原始数据:\n” + strJson + “\n\n解析之后:\n”;
try {
JSONObject mJsonObject = new JSONObject(strJson);
JSONArray mJsonArray = mJsonObject.getJSONArray(“staff”);
String company = mJsonObject.getString(“company”);
staffInfo = staffInfo + company + "共有 " + mJsonArray.length()
- " 个员工,信息如下:\n";
for (int staffCount = 0; staffCount < mJsonArray.length(); staffCount++) {
// 获取员工
JSONObject staff = mJsonArray.getJSONObject(staffCount);
int staffNo = staffCount + 1;
staffInfo = staffInfo + “序号:” + staffNo + " 姓名: "
-
staff.getString(“name”) + " 年龄: "
-
staff.getInt(“age”) + “\n”;
}
tvMsg.setText(staffInfo);
} catch (JSONException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
}
布局有点拖沓,其实数据封装部分还可以利用一下解析部分的逻辑。
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”
android:layout_width=“fill_parent”
android:layout_height=“fill_parent”
android:orientation=“vertical” >
<TextView
android:id="@+id/tvMsg"
android:layout_width=“fill_parent”
android:layout_height=“wrap_content” />
<TextView
android:layout_width=“fill_parent”
android:layout_height=“wrap_content”
android:text="==========================" />
<LinearLayout
android:layout_width=“fill_parent”
android:layout_height=“wrap_content”
android:orientation=“horizontal” >
<EditText
android:id="@+id/etName"
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:hint=“姓名” />
<EditText
android:id="@+id/etAge"
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:hint=“年龄” />
<Button
android:id="@+id/btnAdd"
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“增加” />
<Button
android:id="@+id/btnJson"
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“JSON” />
<TextView
android:id="@+id/tvJson"
android:layout_width=“fill_parent”
android:layout_height=“wrap_content” />
4.DOM,SAX解析XML
分别通过DOM和SAX解析XML实现存储和读取XML信息。
首先是DOM存储信息到XML文件:
// 判断是否存在SDCard
if(!Environment.getExternalStorageState().equals(
Environment.MEDIA_MOUNTED)){
return ;
}
// 路径:/sdcard/zhoumushui/android.xml
File file = new File(Environment
.getExternalStorageDirectory().toString()
-
File.separator
-
“zhoumushui” + File.separator + “android.xml”) ;
// 若目录不存在则创建
if (! file.getParentFile().exists()) {
file.getParentFile().mkdirs() ;
}
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = null;
try {
builder = factory.newDocumentBuilder();
} catch (ParserConfigurationException e) {
e.printStackTrace();
}
Document doc = null;
doc = builder.newDocument();
// 根标签
Element roottag = doc.createElement(“roottag”) ;
// 次标签
Element infotag = doc.createElement(“infotag”) ;
Element name = doc.createElement(“name”) ;
Element url = doc.createElement(“url”) ;
name.appendChild(doc.createTextNode(MyDOMDemo.this.name.getText()
.toString()));
url.appendChild(doc.createTextNode(MyDOMDemo.this.url.getText()
.toString())) ;
// 次标签有两个子元素name和url
infotag.appendChild(name) ;
infotag.appendChild(url) ;
// 主标签有一个子元素infotag
roottag.appendChild(infotag) ;
doc.appendChild(roottag) ;
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = null;
try {
transformer = transformerFactory.newTransformer();
} catch (TransformerConfigurationException e1) {
e1.printStackTrace();
}
transformer.setOutputProperty(OutputKeys.ENCODING, “UTF-8”) ;
// 定义source和result,从source变形为result:
DOMSource source = new DOMSource(doc);
StreamResult result = new StreamResult(file);
try {
transformer.transform(source, result);
} catch (TransformerException e) {
e.printStackTrace();
}
在Activity中输入内容后,点击Button提交后,在/sdcard/zhoumushui/android.xml文件中显示以下信息:
<?xml version="1.0" encoding="UTF-8"?>zhoumushui
blog.youkuaiyun.com/zhoumushui
成功实现了将数据存储到XML文件中,下面看一下怎么用DOM读取XML中的信息:
if (!Environment.getExternalStorageState().equals(
Environment.MEDIA_MOUNTED)) {
return;
}
File file = new File(Environment.getExternalStorageDirectory()
.toString()
-
File.separator
-
“zhoumushui”
-
File.separator + “android.xml”);
if (!file.exists()) {
return;
}
// 建立DocumentBuilderFactory,以用于取得DocumentBuilder
DocumentBuilderFactory factory = DocumentBuilderFactory
.newInstance();
// 通过DocumentBuilderFactory取得DocumentBuilder
DocumentBuilder builder = null;
try {
builder = factory.newDocumentBuilder();
} catch (ParserConfigurationException e) {
e.printStackTrace();
}
// 定义Document接口对象,通过DocumentBuilder类进行DOM树的转换操作
Document doc = null;
try {
doc = builder.parse(file); // 读取指定路径的xml文件
} catch (SAXException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
NodeList nodeList = doc.getElementsByTagName(“infotag”);
// 输出NodeList中第一个子节点中文本节点的内容
for (int x = 0; x < nodeList.getLength(); x++) { // 循环输出节点内容
Element e = (Element) nodeList.item(x); // 取得每一个元素
MyDOMDemo.this.name.setText(e.getElementsByTagName(“name”)
.item(0).getFirstChild().getNodeValue()); // 设置文本
MyDOMDemo.this.email.setText(e.getElementsByTagName(“url”)
.item(0).getFirstChild().getNodeValue()); // 设置文本
}
这样就可以读取到刚刚存储到android.xml文件中的内容了。
下面看一下另外一种解析方式SAX获得xml中内容的处理方法:
Activity中的内容与DOM类似:
if (!Environment.getExternalStorageState().equals(
Environment.MEDIA_MOUNTED)) {
return;
}
File file = new File(Environment.getExternalStorageDirectory()
.toString()
-
File.separator
-
“zhoumushui”
-
File.separator + “android.xml”);
if (!file.exists()) {
return;
}
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser parser = null;
MySAX mySax = new MySAX();
try {
parser = factory.newSAXParser();
} catch (Exception e) {
e.printStackTrace();
}
try {
parser.parse(file, mySax);
} catch (Exception e) {
e.printStackTrace();
}
List all = mySax.getAll();
name.setText(all.get(0).getName());
url.setText(all.get(0).getUrl());
MySAX类继承自org.xml.sax.helpers.DefaultHandler :
public class MySAX extends DefaultHandler {
private List all = null;
private String elementName = null;
private LinkMan linkMan = null;
@Override
public void startDocument() throws SAXException {
this.all = new ArrayList();
}
@Override
public void startElement(String uri, String localName, String name,
Attributes attributes) throws SAXException {
if (“infotag”.equals(localName)) {
this.linkMan = new LinkMan();
}
this.elementName = localName;
}
@Override
public void characters(char[] ch, int start, int length)
throws SAXException {
if (this.elementName != null) {
String data = new String(ch, start, length);
if (“name”.equals(this.elementName)) {
this.linkMan.setName(data);
} else if (“url”.equals(this.elementName)) {
this.linkMan.setUrl(data);
}
}
}
@Override
public void endElement(String uri, String localName, String name)
throws SAXException {
if (“linkman”.equals(localName)) {
this.all.add(this.linkMan);
this.linkMan = null;
}
this.elementName = null;
}
最后
现在都说互联网寒冬,其实无非就是你上错了车,且穿的少(技能),要是你上对车,自身技术能力够强,公司换掉的代价大,怎么可能会被裁掉,都是淘汰末端的业务Curd而已!现如今市场上初级程序员泛滥,这套教程针对Android开发工程师1-6年的人员、正处于瓶颈期,想要年后突破自己涨薪的,进阶Android中高级、架构师对你更是如鱼得水,赶快领取吧!
上述【高清技术脑图】以及【配套的架构技术PDF】点击:Android架构视频+BAT面试专题PDF+学习笔记,或者私信回复【技能提升】即可获取!
为什么某些人会一直比你优秀,是因为他本身就很优秀还一直在持续努力变得更优秀,而你是不是还在满足于现状内心在窃喜!
Android架构师之路很漫长,一起共勉吧!