问题
I want to display an excel sheet in my android application. I have googled and yet cannot find a starting tip to render an excel file using android components. If anybody knows any thing please give me some valuable hint.
回答1:
You can use Apache POI or Java Excel API.
回答2:
In android jxl.jar is use for create excel sheet. and it is available at here
and you can create excel sheet by using following code.File root = Environment.getExternalStorageDirectory();File gpxfile = new File(root, sFileName);FileWriter writer = new FileWriter(gpxfile);writer.append("NAME");
回答3:
Try GridView.
来源:https://stackoverflow.com/questions/8048266/excel-sheet-display-in-android