XML ArrayCollection applicationStorageDirectory

时间:2012-09-14 03:50:57

标签: xml flex actionscript adobe arraycollection

我有一个XML文件,我住在applicationStorageDirectory中,我需要将内容加载到ArrayCollection中。

XML看起来像(见下文),我可以读取和写入它但我需要将数据保存在ArrayCollection中,以便将其加载到数据网格中。

<?xml version="1.0" encoding="utf-8"?>
<item>
 <sort>2012/10/31PM0000</sort>
 <date>Wed Oct 31 2012</date>
 <event>Halloween</event>
 <time>12:00 PM</time>
</item>
<item>
  <sort>2012/09/13AM0000</sort>
  <date>Thu Sep 13 2012</date>
  <event>Enter Details</event>
  <time>12:00 AM</time>
</item>

我发现我可以在HTTP服务中使用url =“app-storage:/reminder.xml”,它与Air,dunno有关Android应用程序,将不得不等待和看到。

<s:HTTPService id="reminderXML" url="app-storage:/reminder.xml" result="reminderDataHandler(event)" fault="faultHandler(event);"/>

1 个答案:

答案 0 :(得分:0)

您可以尝试使用以下util,它会将您的XML / XMLList转换为ICollectionView。您可以使用它绑定到datagrid。

    public static function toCollection( value:Object ):ICollectionView
    {
        var collection:ICollectionView;

        collection = null;
        if (value is Array)
        {
            collection = new ArrayCollection(value as Array);
        }
        else if (value is ICollectionView)
        {
            collection = ICollectionView(value);
        }
        else if (value is IList)
        {
            collection = new ListCollectionView(IList(value));
        }
        else if (value is XMLList)
        {
            collection = new XMLListCollection(value as XMLList);
        }
        else if (value is XML)
        {
            var xl:XMLList = new XMLList();
            xl += value;
            collection = new XMLListCollection(xl);
        }
        else
        {
            // convert it to an array containing this one item
            var tmp:Array = [];
            if (value != null)
                tmp.push(value);
            collection = new ArrayCollection(tmp);
        }

        return collection;
    }