我正在使用alive pdf 进行flex 应用程序pdf 导出,它在flash builder 4.6 上运行良好,但我在android 手机(HTC sense xe)上尝试了alive pdf 不保存到pdf 文件。我正在等待帮助。
这是我的 pdf 导出源:
var f:File = File.applicationStorageDirectory.resolvePath('chart.pdf');
var fs:FileStream = new FileStream();
fs.open(f,FileMode.WRITE);
fs.writeBytes(pdf.save(Method.LOCAL));
trace('SAVE FILE: '+f.nativePath);
fs.close();