Java LocalConnection 客户端
我想将 Flash Player 实例 (AMF3) 连接到 Java LocalConnection。 我知道如何实现 AMF3 规范,因为我已经使用 Red5 做了很多工作,但我不确定如何导航构建实际的 LocalConnection 接口。 此处提供了 C 代码,但我不会说 C 来挽救我的生命。 有谁知道 Flash Player LocalConnection 的 Java 实现吗?
I'd like to connect a Flash Player instance (AMF3) to a Java LocalConnection. I know how to implement the AMF3 spec, since I've done a lot of work with Red5, but I'm unsure how to navigate building the actual LocalConnection interface. There is C code provided here, but I can't speak C to save my life. Does anyone know of a Java implementation of the Flash Player LocalConnection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Flash 本地连接使用共享内存(请参阅http://osflash.org/localconnection)
要在 Java 中使用它,(我想)你需要编写一个 JNI 包装器来读取它。
另一个(更简单的)解决方案是创建一个与客户端(Flash 应用程序)通信的套接字服务器(您的 Java 应用程序)。
Flash local connection use Shared Memory (see http://osflash.org/localconnection)
To use that in Java, (I suppose) you need write a JNI Wrapper to read it.
The other (easier) solution, is create a socket server (your Java Application) where the client (Flash Application) communicate with.
不确定这对您是否有用,但是有一个名为 merapi 项目的项目可以在 adobe air 和 java 之间建立桥梁,不确定您是否可以将其用于独立的 Flash 播放器。 看看你的想法。
默拉皮项目
Not sure if this is useful to you, but there is a project called the merapi project that bridges between adobe air and java, not sure if you could adopt this for a flash player stand alone. See what you think.
Merapi Project