Skip to content

Latest commit

 

History

8 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

rxlsx

读取Excel(xlsx)文件(ActionScript版)

private var urlloader:URLLoader;
public function RxlsxTest()
{
        urlloader = new URLLoader();
        urlloader.dataFormat = URLLoaderDataFormat.BINARY;
        urlloader.addEventListener(Event.COMPLETE,urlloaderCompHandler);
        urlloader.load(new URLRequest("Book1.xlsx"));
}
private function urlloaderCompHandler(e:Event):void
{
        var excel:Excel = new Excel(urlloader.data as ByteArray,0);
        var sheet:Array = excel.getSheetArray();//得到表格数据
}

About

读取xlsx文件

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages