在我們的應用程序中,我們將pdf文件存儲到內部存儲中。現在我想要獲取它的文件路徑並需要存儲到數據庫中。請告訴我如何獲取文件路徑。 下面的代碼:如何從android內部存儲中獲取文件的文件路徑
public void storeIntoInternalMem(byte[] databytes, String name) {
try
{
FileOutputStream fileOuputStream = openFileOutput(name, MODE_PRIVATE);
fileOuputStream.write(databytes);
fileOuputStream.close();
} catch (IOException e)
{
e.printStackTrace();
}
}
http://stackoverflow.com/questions/17546718/android-getting-internal-storage-absolute-path 指該鏈接...... –