从原始文件夹中的文件获取对象文件

时间:2013-05-22 12:35:34

标签: android android-resources

我想做的很简单:

    String dataDir = getActivity().getPackageManager().getPackageInfo(getActivity().getPackageName(), 0).applicationInfo.dataDir;

    Log.e(TAG , "dataDir = " + dataDir);

    File tmpFile = new File(dataDir + "/raw/ocr.jpg");

但是我找到了一个未找到异常的文件

我需要一个目标文件,就像我

之后
    photoUriString = MediaStore.Images.Media.insertImage(getActivity().getContentResolver(), tmpFile.getAbsolutePath(), null, null);

(因为我想在Google +上分享图片,请参阅How to share image in google Plus through an android app?

所以请不要告诉我有关读者,bufferedReader等的信息......

由于

1 个答案:

答案 0 :(得分:0)

InputStream is = getResources().openRawResource(R.raw.ocr.jpg));

您必须通过openRawResource获取InputStream,然后您可以根据需要进行管理