在Flex Air中以绝对路径显示图像

时间:2013-07-08 10:43:40

标签: flex air path

我有非常简单的Flex Air应用程序,我想在文档目录中加载图像:

<?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" creationComplete="init(event)">
    <fx:Script>
        <![CDATA[
            import mx.events.FlexEvent;

            protected function init(event:FlexEvent):void {
                image.source = File.documentsDirectory.resolvePath('image.jpg').nativePath;
            }
        ]]>
    </fx:Script>

    <s:BitmapImage id="image"/>

</s:WindowedApplication>

问题是Flex Air不知道如何处理本机(绝对)路径。

看起来很容易,但我不知道如何解决它......

1 个答案:

答案 0 :(得分:4)

您需要一个URL(或ByteArray)来加载非嵌入式图片,因此请使用文件的url属性而不是nativePath

image.source = File.documentsDirectory.resolvePath('image.jpg').url;