任何方法有一个ActionScript 3(的Flex / AIR)项目打印到标准输出? [英] Any way to have an ActionScript 3 (Flex/AIR) project print to standard output?

查看:139
本文介绍了任何方法有一个ActionScript 3(的Flex / AIR)项目打印到标准输出?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法让从ActionScript 3的项目打印的东西编译成二进制的标准输出的执行的时候?

Is there any way to have a binary compiled from an ActionScript 3 project print stuff to stdout when executed?

从我收集的,人们一直将解决此限制通过编写依赖于本地套接字连接和AIR应用程序,写入到本地文件系统文件的黑客,但这是pretty的太多了 - 这显然不可能的Flash Player和AIR运行时从Adobe。

From what I've gathered, people have been going around this limitation by writing hacks that rely on local socket connections and AIR apps that write to files in the local filesystem, but that's pretty much it -- it's obviously not possible with the Flash Player and AIR runtimes from Adobe.

有任何项目(如基础上,狨code)正试图执行一些会提供这种功能?

Is there any project (e.g. based on the Tamarin code) that is attempting to implement something that would provide this kind of functionality?

推荐答案

通过AIR在Linux上,很容易写入stdout,因为这个过程可以看到自己的文件描述符在/ dev下的文件。

With AIR on Linux, it is easy to write to stdout, since the process can see its own file descriptors as files in /dev.

有关标准输出,打开的/ dev / FD / 1 的/ dev /标准输出的FileStream ,然后写了这一点。

For stdout, open /dev/fd/1 or /dev/stdout as a FileStream, then write to that.

例如:

var stdout : FileStream = new FileStream();
stdout.open(new File("/dev/fd/1"), FileMode.WRITE);
stdout.writeUTFBytes("test\n");
stdout.close();

注意:查看<一href="http://stackoverflow.com/questions/5552277/when-to-use-writeutf-and-writeutfbytes-in-bytearray-of-as3">this回答之间的差额 writeUTF() writeUTFBytes()可 - 后者将避免混乱的输出标准输出。

Note: See this answer for the difference between writeUTF() and writeUTFBytes() - the latter will avoid garbled output on stdout.

这篇关于任何方法有一个ActionScript 3(的Flex / AIR)项目打印到标准输出?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆