Windows Phone 实用开发技巧(25):Windows Phone读取本地数据

来源:未知 责任编辑:智问网络 发表时间:2013-09-02 11:58 点击:

 Windows Phone read local data

During windows phone development, sometimes we might be want to read some initial data from local resources. Data can be stored in XML, JSON, TXT or other formats. Unlike data files stored in Isolatedstorage, we cannot make changes to them or delete them (since they are built in Content or Resource). Which format is better ? Well, it depends. So let me make a simple demo to show you how we read initial data in windows phone.

Read XML Files

Assuming that we have following xml file

<?xml version="1.0" encoding="utf-8" ?> <Students>   <Student>     <Name>Alexis</Name>     <Age>12</Age>     <No>007</No>   </Student>   <Student>     <Name>Tomcat</Name>     <Age>20</Age>     <No>62</No>   </Student>   <Student>     <Name>Jacky</Name>     <Age>32</Age>     <No>001</No>   </Student>   <Student>     <Name>Selina</Name>     <Age>24</Age>     <No>033</No>   </Student> </Students> 

The root Element is Students which has four child element Student. How can we load them in windows phone .We can do that in many ways. Before we do that we create Student class first.

public class Student {
    public string Name { get; set; }

    public int Age { get; set; }

    public string No { get; set; }
}

Way 1.  Add System.Xml.Linq reference

image_thumb

then we can use following code to load students in one collection

XElement root = XElement.Load("Students.xml");
if (root != null)
{
     var items = from student in root.Descendants("Student")
                 select new Student                  {
                    Age = Convert.ToInt32(student.Element("Age").Value),
                    Name = student.Element("Name").Value,
                    No = student.Element("No").Value,
                  };
     listBox1.ItemsSource = items;
}

Remeber to set Students.xml build action to Content.

Way 2. use Application.GetResourceStream 

var streamInfo = Application.GetResourceStream(new Uri("Students.xml", UriKind.Relative));
using (var stream=streamInfo.Stream)
{
    XElement root = XElement.Load(stream);
    if (root != null)
    {
       var items = from student in root.Descendants("Student")
                   select new Student                    {
                      Age = Convert.ToInt32(student.Element("Age").Value),
                      Name = student.Element("Name").Value,
                      No = student.Element("No").Value,
                    };
        listBox1.ItemsSource = items;
     }
}

Note: that Application.GetResourceStream is suitable for all file format.

We can use Application.GetResourceStream to load txt files, json files , dat files and whatever format. What you need to do is prepare data and read the file stream, convert to what you want.

you can find source here 

本文出自 “Alexis的51博客” 博客,请务必保留此出处http://alexis.blog.51cto.com/2621421/688264

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Windows Phone 项目实战之我的微盘(下)
    • Windows Phone 实用开发技巧(26):对DataTemplate中的元素播放
    • Windows Phone 实用开发技巧(25):Windows Phone读取本地数据
    • Windows Phone 实用开发技巧(27):创建透明Tile
    • Windows Phone 知识锦(12月版)
    • Windows Phone实用开发技巧(31):密码加密
    • Windows Phone 项目实战之我的微盘(上)
    • WP7实例篇之土豆搜索器(2)
    • [翻译]WP7 QuickStart-第七篇-布局
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1