将XML数据读回Flex组件

时间:2012-09-08 15:44:29

标签: flex air flash-builder

请帮忙

我可以将这三个组件中的数据保存为xml并且它可以工作,但现在我正在努力使用代码在用户打开时将数据读回组件。这是用户创建的本地文件。我需要有关open事件处理程序的帮助。

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                       xmlns:s="library://ns.adobe.com/flex/spark"
                       xmlns:mx="library://ns.adobe.com/flex/mx"
                       width="734" height="389"
                       creationComplete="init();">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->

    </fx:Declarations>


    <fx:Script>
        <![CDATA[

        [Bindable]
        public var xmlData:XML=<ROOTS></ROOTS>;

        private function fnAddItem():void
        {
        var fr:FileReference = new FileReference(); 

        var ba:ByteArray = new ByteArray();
        var newXmlRow:XML=<ROOTS>
        <TXT>{txt1.text}</TXT>
        <TXTA>{txt2.text}</TXTA>
        <DTF>{txt3.text}</DTF>
        </ROOTS>;
        ba.writeMultiByte(newXmlRow, 'utf-8');
        fr.save(ba);
        }


            protected function oped_clickHandler(event:MouseEvent):void
            {
                var fr:FileReference = new FileReference();
                var ba:ByteArray = new ByteArray();
                var newXmlRow:XML=<ROOTS>
                        <TXT>{txt1.text}</TXT>
                        <TXTA>{txt2.text}</TXTA>
                        <DTF>{txt3.text}</DTF>
                        </ROOTS>;
                ba.readMultiByte(xmlData, 'utf-8');
                fr.load(ba);

            }


        ]]>
    </fx:Script>
    <s:Label x="108" y="80" text="Name"/>
    <s:Label x="91" y="222" text="Remarks"/>
    <s:Label x="108" y="116" text="text"/>
    <s:TextInput id="txt1" x="167" y="78"/>
    <s:TextArea id="txt2" x="167" y="218" height="86"/>
    <s:TextArea id="txt3" x="167" y="108" height="77"/>

    <s:Button x="53" y="242" label="save" width="90" click="fnAddItem()"/>
    <s:Button id="oped" x="73" y="271" label="open" click="oped_clickHandler(event)"/>

</s:WindowedApplication>

0 个答案:

没有答案