1

这是在 Android 上打开 Adob​​e Reader 的一种方法:

try {
  Intent intent = new Intent();

  intent.setClassName("com.adobe.reader", "com.adobe.reader.AdobeReader");
  intent.setAction(Intent.ACTION_VIEW);
  intent.setDataAndType(Uri.fromFile(doc), "application/pdf");

  startActivity(intent);
} 
catch (ActivityNotFoundException activityNotFoundException) {
  activityNotFoundException.printStackTrace();
}

有没有办法打开它并指定注释的作者姓名(我们可以在 pdf 文档上使用 adobe reader 10.4.0 的注释)?

提前致谢 !

扎布

4

1 回答 1

0

我找到的唯一解决方案是使用超级用户(在根设备上)。

以下是如何做到这一点:

    Process suProcess = Runtime.getRuntime().exec("su");

    DataOutputStream os = new DataOutputStream(suProcess.getOutputStream());

    os.writeBytes("echo \"<?xml version='1.0' encoding='utf-8' standalone='yes' ?><map><string name='commentAuthorName'>toto</string></map>\" > /data/data/com.adobe.reader/shared_prefs/com.adobe.reader.preferences.xml \n");

    os.writeBytes("exit\n");
    os.flush();
    os.close();

    suProcess.waitFor();
于 2012-10-20T10:06:44.767 回答