19

有没有办法打开 .doc 扩展文件?

4

6 回答 6

32

与 iOS 不同,Android 本身不支持渲染 .doc 或 .ppt 文件。您正在寻找一种公共意图,允许您的应用程序重用其他应用程序的活动来显示这些文档类型。但这仅适用于安装了支持此 Intent 的应用程序的手机。

http://developer.android.com/guide/topics/intents/intents-filters.html

或者如果你已经安装了一些应用程序,那么使用这个 Intent:

//Uri uri = Uri.parse("file://"+file.getAbsolutePath());
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Intent.ACTION_VIEW);
String type = "application/msword";
intent.setDataAndType(Uri.fromFile(file), type);
startActivity(intent);  
于 2012-04-20T08:06:16.440 回答
14

这是一种为您解决此问题的方法:

public void openDocument(String name) {
    Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
    File file = new File(name);
    String extension = android.webkit.MimeTypeMap.getFileExtensionFromUrl(Uri.fromFile(file).toString());
    String mimetype = android.webkit.MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
    if (extension.equalsIgnoreCase("") || mimetype == null) {
        // if there is no extension or there is no definite mimetype, still try to open the file
        intent.setDataAndType(Uri.fromFile(file), "text/*");
    } else {
        intent.setDataAndType(Uri.fromFile(file), mimetype);            
    }
    // custom message for the intent
    startActivity(Intent.createChooser(intent, "Choose an Application:"));
}
于 2012-12-28T02:47:43.530 回答
13

从可用应用程序列表中打开文档 用户必须从应用程序列表中选择应用程序

File targetFile = new File(path);
                    Uri targetUri = Uri.fromFile(targetFile);
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setDataAndType(targetUri, "application/*");
                    startActivityForResult(intent, DOC);
于 2013-01-02T06:27:35.620 回答
3

如果要在应用程序中打开,可以在 webview 中打开文件。前任:

 String doc="<iframe src='http://docs.google.com/viewer?    url=http://www.iasted.org/conferences/formatting/presentations-tips.ppt&embedded=true'"+
    " width='100%' height='100%' style='border: none;'></iframe>";

        WebView  wv = (WebView)findViewById(R.id.fileWebView); 
        wv.getSettings().setJavaScriptEnabled(true);
        wv.getSettings().setAllowFileAccess(true);
        //wv.loadUrl(doc);
        wv.loadData( doc , "text/html",  "UTF-8");
于 2015-01-19T11:37:42.013 回答
2

以下是在 Android 7.0 或更低版本中打开 .doc 文件的完整方法:

步骤 1: 首先,将您的 pdf 文件放在 assets 文件夹中,如下图所示。 将文档文件放在资产文件夹中

第 2 步: 现在转到 build.gradle 文件并添加以下行:

repositories {
maven {
    url "https://s3.amazonaws.com/repo.commonsware.com"
}

}

然后在依赖项下添加以下行并同步:

compile 'com.commonsware.cwac:provider:0.4.3'

第 3 步: 现在添加一个新的 java 文件,该文件应该从FileProviderLike 在我的情况下扩展文件名是LegacyCompatFileProvider和其中的代码。

import android.database.Cursor;
import android.net.Uri;

import android.support.v4.content.FileProvider;

import com.commonsware.cwac.provider.LegacyCompatCursorWrapper;

public class LegacyCompatFileProvider extends FileProvider {
  @Override
  public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
    return(new LegacyCompatCursorWrapper(super.query(uri, projection, selection, selectionArgs, sortOrder)));
  }
}

Step-4:"xml"在文件夹下 创建一个文件"res"夹。(如果文件夹已经存在,则无需创建)。现在providers_path.xml在文件夹中添加一个文件xml。这是屏幕截图: provider_path xml文件的位置

内部文件添加以下行:

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <files-path name="stuff" />
</paths>

第 5 步: 现在转到AndroidManifest.xml文件并在<application></application>标签中添加以下行:

<provider
            android:name="LegacyCompatFileProvider"
            android:authorities="REPLACE_IT_WITH_PACKAGE_NAME"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths"/>
        </provider>

第 6 步: 现在转到要加载 pdf 的 Activity 类,并添加以下 1 行和这 2 个方法:

private static final String AUTHORITY="REPLACE_IT_WITH_PACKAGE_NAME";

static private void copy(InputStream in, File dst) throws IOException {
        FileOutputStream out=new FileOutputStream(dst);
        byte[] buf=new byte[1024];
        int len;

        while ((len=in.read(buf)) > 0) {
            out.write(buf, 0, len);
        }

        in.close();
        out.close();
    }

    private  void LoadPdfFile(String fileName){

        File f = new File(getFilesDir(), fileName + ".doc");

        if (!f.exists()) {
            AssetManager assets=getAssets();

            try {
                copy(assets.open(fileName + ".doc"), f);
            }
            catch (IOException e) {
                Log.e("FileProvider", "Exception copying from assets", e);
            }
        }

        Intent i=
                new Intent(Intent.ACTION_VIEW,
                        FileProvider.getUriForFile(this, AUTHORITY, f));

        i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

        startActivity(i);
        finish();
    }

现在调用LoadPdfFile方法并传递您的文件名而.doc不像我的情况一样"chapter-0",它将在文档阅读器应用程序中打开文档文件。

于 2017-08-22T12:06:13.983 回答
0

您可以将文件从原始资源复制到 sdcard,然后在 ACTION_VIEW Intent 上调用 startActivity(),该意图具有指向可读副本的 Uri 并且还具有正确的 MIME 类型。

当然,这仅适用于具有 Word 文档查看器的设备。

于 2012-04-20T08:03:14.680 回答