将pdf文件从assest复制到SD卡

时间:2016-08-06 16:47:16

标签: java android sd-card

我已经构建了从assests文件夹打开pdf文件的应用程序,它正常工作,但文件是在内部存储中创建的。如何为用户隐藏它。 有没有办法将其存储在根文件夹中,以便用户无法看到它。

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);


    File fileBrochure = new File(Environment.getExternalStorageDirectory()+ "/" + "abc.pdf");




    if (!fileBrochure.exists())
    {
        Toast.makeText(this, "copying", Toast.LENGTH_SHORT).show();

        CopyAssetsbrochure();
    }

    /** PDF reader code */
    File file = new File(Environment.getExternalStorageDirectory()+ "/" + "abc.pdf");

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.fromFile(file),"application/pdf");

    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    try
    {

        getApplicationContext().startActivity(intent);

    }
    catch (ActivityNotFoundException e)
    {
        Toast.makeText(this, "NO Pdf Viewer", Toast.LENGTH_SHORT).show();
    }
}

private void CopyAssetsbrochure() {
    AssetManager assetManager = getAssets();
    String[] files = null;
    try
    {
        files = assetManager.list("");
    }
    catch (IOException e)
    {
        Log.e("tag", e.getMessage());
    }

    for(int i=0; i<files.length; i++)
    {
        String fStr = files[i];
        if(fStr.equalsIgnoreCase("abc.pdf"))
        {
            InputStream in = null;
            OutputStream out = null;
            try
            {
                in = assetManager.open(files[i]);
                out = new FileOutputStream(Environment.getExternalStorageDirectory()+ "/" + files[i]);
                copyFile(in, out);
                in.close();
                in = null;
                out.flush();
                out.close();
                out = null;
                break;
            }
            catch(Exception e)
            {
                Log.e("tag", e.getMessage());
            }
        }
    }
}

private void copyFile(InputStream in, OutputStream out) throws IOException {
    byte[] buffer = new byte[1024];
    int read;
    while((read = in.read(buffer)) != -1){
        out.write(buffer, 0, read);
    }
}

1 个答案:

答案 0 :(得分:0)

不可能。你无法访问root。

您可以通过使用加密和解密的密码术来实现您的要求。

加密文件并将其存储在内部存储上,同时在应用程序内部读取解密文件。你会完成的。

如果任何入侵者从内部存储中复制您的文件,那么他或她将无法解密它。