如何在 Flex 中连接 RDF 文件(并使用其内容)?
我正在使用 Flex 开发原型,我需要将我的应用程序连接到包含一些属性的 .RDF 文件。 我需要在 Actionscript 中创建的“描述符文件”中使用和操作这些属性。 所以我的问题是:如何将我的 Flex 应用程序连接到该 .RDF 文件? 谢谢,
问候
大卫
I'm working on a prototype in flex and I need to connect my application to an .RDF file that contains some properties. I need to use and manipulate those properties in a "descriptor file" made in Actionscript. So my question is: how do I connect my flex application to that .RDF file?
Thanks,
regards
David
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 RDF 以 XML 形式表示(我猜这是最常见的),您可以简单地将其视为 XML 并使用内置的
XML
和XMLList
类,以及相当方便的 E4X(ECMAScript for XML)语法来遍历您的文档。 要从服务器或其他远程位置加载 RDF 文件,请使用URLLoader
类。另一方面,如果 RDF 使用其他表示形式,您可能必须自己对明文进行解析。 (您仍然可以使用
URLLoader
)。If RDF is represented in its XML form (which I guess is the most common anyway), you can simply treat it as XML and use the built-in
XML
andXMLList
classes, and the rather convenient E4X (ECMAScript for XML) syntax to traverse your document. To load the RDF file from the server or from another remote location, use theURLLoader
class.If, on the other hand, the RDF uses some other representation, you'll probably have to do the parsing from plaintext yourself. (You can still use
URLLoader
).