如何在Android中打开的Excel表?如何在、Android、Excel

2023-09-13 01:22:48 作者:樱花少女

任何人都可以请帮我知道如何打开一个Excel工作表中的Andr​​oid? 谢谢

Can anyone please help me to know how to open an excel sheet in Android? Thanks

推荐答案

在Android的,jxl.jar用于创建Excel工作表,它是在的此处 您可以通过以下code创建Excel工作表。

In android, jxl.jar is used to 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");