AS3 / AIR - 创建纯文本文件?
是否可以使用 AS3 或 AIR 创建纯文本文件?
示例:我想创建一个名为“MyTextFile.txt”的纯文本文件,让它包含“这是我的文本文件”的文本。并将其保存到我的桌面。
另一种选择是让文件已经存在于目录中,所以我只需要重写它的内容 - 假设这样会更容易。
所有这些都应该作为后台进程发生,而不出现任何保存对话框面板。
is it possible to create a plain text file with AS3 or AIR?
example: i would like to create a plain text file named "MyTextFile.txt", have it contain text that reads "This is my text file." and save it to my desktop.
another option would be to have the file already exist in a directory, so i would only have to rewrite its contents - assuming that would be easier.
all of which should happen as a background process, without any save dialoge panel appearing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我知道这是一篇旧文章,但请考虑以下内容,从输入文本字段的文本创建新的 .txt 文件。
I know this is an old post, but consider the following to create a new .txt file from an input text field's text.
另请考虑以下文本:
文本字段而不是跟踪语句
在移动设备上运行时,您无法看到跟踪语句的输出。
函数 createTracingTextField(x:数字, y:数字,
宽度:数字,高度:数字):TextField {
}
等等...
Also consider this text:
Text fields instead of trace statements
When running on a mobile device, you cannot see the output from the trace statements.
function createTracingTextField(x:Number, y:Number,
width:Number, height:Number):TextField {
}
And so forth...