I have a PDF file in assets folder. Every time I run my application the PDF file is viewed as in notepad. I can't read the PDF file. Can anyone help me?
Here is my code:
public class sample extends Activity {
private TextView pdfview;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
AssetManager assetManager = getAssets();
InputStream inputStream = null;
try {
inputStream = assetManager.open("sample.pdf");
} catch (IOException e) {
Log.e("tag", e.getMessage());
}
String s = readPDFFile(inputStream);
pdfview = (TextView) findViewById(R.id.secondId);
pdfview.setText(s);
}
private String readPDFFile(InputStream inputStream) {
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
byte buf[] = new byte[1024];
int len;
try {
while ((len = inputStream.read(buf)) != -1) {
outputStream.write(buf, 0, len);
}
outputStream.close();
inputStream.close();
} catch (IOException e) {
}
return outputStream.toString();
}
}
Using this code, the PDF file shows but not in a PDF reader. I have a PDF reader installed on my Android Device.
Thanks