Abrir PDF na Pasta Raw android?

Prezados Senhores, como faço abrir PDF na pasta RAW android já tentei de tudo e dá erro.

String path="//raw";
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath() +"/"+path);
Intent target = new Intent(Intent.ACTION_VIEW);
target.setDataAndType(Uri.fromFile(file), "application/pdf");

Intent intent = Intent.createChooser(target, "Abrir arquivo");

try {
    startActivity(intent);
} catch (ActivityNotFoundException e) {
    //Caso o usuário não tenha um visualizador de PDF, instrua-o aqui a baixar
}