从Java读取数据并在Flex中显示
好吧,我对 Flex 和 java 的使用有点困惑,这是我的问题:我的 java 应用程序必须从在线服务器读取两个 .zip 文件。这些类将加载并解析线程中的数据,并根据此类信息执行某些操作。当我的 Flex 应用程序调用查询此类数据的 java 方法时,就会出现问题。我需要等待直到加载完成。有什么想法吗? 另一个疑问是 Java 类是否被编译并转换为某种形式的 ActionScript 类。 也许我迷失在太空中,所以请在黑暗中我需要一盏灯,谢谢。
well i am a little confused about the use of Flex and java, this is my problem: My java application must read two .zip files from an online server. These classes will load and parse the data in a Thread and perform certain actions depending on such info. The problem occurs when my flex application calls the java method that queries such data. I need to WAIT until the loading has finished. Any ideas?
Another doubt is if the Java classes are being compiled and transformed into some form of ActionScript classes.
Maybe I'm lost in space, so please I need a light in the darkness, thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要做的是设置一个远程对象或 httpservices,以便您可以调用服务器端 java 方法 ->做任何需要处理的事情 ->并向 Flex 应用程序发送响应。您应该查看 BlazeDS 和 HttpServices。
What you want to do is either set up a remote object or httpservices so you can call a server side java method -> do what ever processing it needs to -> and send a response to the flex application. You should check out BlazeDS and HttpServices.