0

我是 Android 的新手,我正在研究网格视图,当我单击网格视图中的图像时,我已经实现了我在字符串类型的变量“路径”中有图像的路径,它类似于 /mnt/sdcard/ me.jpg 如何获取图像的名称,即“me.jpg”和图像的日期请告诉我任何用于此目的的函数或代码。我提到代码是为了了解路径

gridview.setOnItemLongClickListener(new OnItemLongClickListener() {

        public boolean onItemLongClick(AdapterView<?> parent, View view,
                int position, long id) {
            path = (String)parent.getItemAtPosition(position);
            /*Toast.makeText(getApplicationContext(), 
                    path, 
                    Toast.LENGTH_LONG).show();*/

            return false;
        }
4

1 回答 1

0

首先在谷歌上搜索然后只发布问题....

File file = new File(path );
String name = file.getName(); //here you get the name of the image

Date lastModDate = new Date(file.lastModified()); // here you get the creation or last modified date of the file
Log.i("File last modified @ : "+ lastModDate.toString());
于 2013-05-06T14:43:22.140 回答