在 Android 上打开 PowerPoint
Open PowerPoint on Android
我是Android的开发者,我的语言英语不好。
我的问题是:
我需要 code
到 Android 设备,打开 PowerPoint。
Android 设备显示 PowerPoint.
请解释 code
是如何工作的。
您可以尝试使用以下代码:
File file = new File("path_to_the_file.ppt");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"application/vnd.ms-powerpoint");
startActivity(intent);
还有一个Apache POI - the Java API for Microsoft Documents
。你可以看看here.
我是Android的开发者,我的语言英语不好。
我的问题是:
我需要 code
到 Android 设备,打开 PowerPoint。
Android 设备显示 PowerPoint.
请解释 code
是如何工作的。
您可以尝试使用以下代码:
File file = new File("path_to_the_file.ppt");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"application/vnd.ms-powerpoint");
startActivity(intent);
还有一个Apache POI - the Java API for Microsoft Documents
。你可以看看here.