码迷,mamicode.com
首页 > 其他好文 > 详细

flash Air 在同一个目录下面创建txt,写入字

时间:2018-07-19 17:29:13      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:str   world   save   port   pat   new   imp   direct   ons   

import flash.filesystem.*;
 
var file:File=new File(File.applicationDirectory.nativePath + ‘/HelloWorld.txt‘);
var stream:FileStream = new FileStream()
stream.open(file, FileMode.WRITE);
var str:String = "Congratulations on AIR Save Path";
stream.writeUTFBytes(str);
stream.close();

 

flash Air 在同一个目录下面创建txt,写入字

标签:str   world   save   port   pat   new   imp   direct   ons   

原文地址:https://www.cnblogs.com/zqiang0803/p/9336658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!