I wish to access the basic attributes of a file. I got to read creation date and others using jdk1.7 (version), using the java.nio package.
public class First {
public static void main(String args[])
{
File xml=new File("xmldata.xml");
try
{
System.out.println(xml.getAbsolutePath());
Path path=FileSystems.getDefault().getPath(xml.getAbsolutePath());
System.out.println(path.getFileSystem());
Path p;
BasicFileAttributes attr=Files.readAttributes(path, BasicFileAttributes.class);
System.out.println(attr.creationTime());
String time=attr.creationTime().toString();
time=time.substring(0,time.indexOf("T"));
System.out.println(time);
}catch(Exception e)
{
System.out.println(e);
}
}
}
Now, I want to read like this in android app. It gives an error saying,
java.lang.NoClassDefFoundError : java.nio.file.FileSystems
Help me guys... I can tell you an alternative which you could give me, like how to get a Path Object from the file object. this can also do....