我正在嘗試一個示例程序來在內部存儲中存儲文件,並使用 Intent.ACTION_VIEW打開它。如何使用Intent.ACTION_VIEW打開保存到內部存儲的私人文件?
對於文件存儲在私密模式我遵循的步驟提供here.
我能找到在內部存儲在/data/data/com.storeInternal.poc/files創建的文件。*
但是,當我試圖打開文件,它不會打開。
請在下面找到我使用它的代碼。
public class InternalStoragePOCActivity extends Activity {
/** Called when the activity is first created. */
String FILENAME = "hello_file.txt";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
createFile();
openFile(FILENAME);
}
public FileOutputStream getStream(String path) throws FileNotFoundException {
return openFileOutput(path, Context.MODE_PRIVATE);
}
public void createFile(){
String string = "hello world!";
FileOutputStream fout = null;
try {
//getting output stream
fout = getStream(FILENAME);
//writng data
fout.write(string.getBytes());
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if(fout!=null){
//closing the output stream
try {
fout.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
public void openFile(String filePath) {
try {
File temp_file = new File(filePath);
Uri data = Uri.fromFile(temp_file);
String type = getMimeType(data.toString());
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(data, type);
startActivity(intent);
} catch (Exception e) {
Log.d("Internal Storage POC ", "No Supported Application found to open this file");
e.printStackTrace();
}
}
public static String getMimeType(String url) {
String type = null;
String extension = MimeTypeMap.getFileExtensionFromUrl(url);
if (extension != null) {
MimeTypeMap mime = MimeTypeMap.getSingleton();
type = mime.getMimeTypeFromExtension(extension);
}
return type;
}
}
我如何可以打開使用Context.MODE_PRIVATE通過任何其他現有/適當應用存儲的文件。例如:file.pdf應該由PDF閱讀器,視頻播放器等打開。
在這裏看到我的回答:http://stackoverflow.com/questions/15377373/how-to-put-a-video -file-in-android-custom-content-provider – dangalg