I had used this code for opening a file
Context context = ...;
AssetManager assManager = context.getAssets();
InputStream is = assManager.open("test.crt");
But i want to use that file to write into file input stream
InputStream caInput = new BufferedInputStream(new FileInputStream("test.crt"));
Advance thanks for any help