私のアプリでは、ギャラリー内のフォルダーから画像を取得して配列リストに保存しています。今度は、拡張子が.jpgのファイルのみを抽出したいと思います。どうすればよいですか。
配列リストに保存するためのコードは次のとおりです。
private List<String> ReadSDCard()
{
//It have to be matched with the directory in SDCard
File f = new File("sdcard/data/crak");
File[] files=f.listFiles();
for(int i=0; i<files.length; i++)
{
File file = files[i];
/*It's assumed that all file in the path are in supported type*/
tFileList.add(file.getPath());
}
return tFileList;
}