to moderators - delete this Thred
Printable View
to moderators - delete this Thred
use setIcon function for directly putting a required icon onto the JLabel along with an actionlistener.:)
You did not understand me
in first circle i want to user see path of directory where he is at that moment
in second circle i want to user see size and last modified ,of file what is selected
p.s. i did not posted 20 messages ,and i can not send PM's and post a link
how want to help me my MSN is : markossss@live(dot)com
Open the jdk API and go into java.io package and use these methods for your task.
:):):):)
Code:File f=new File();
1) f.getAbsolutePath() for getting the path.
2) String s=f.length() for getting the size of the file.
3)File f1=new File(s1);
File f2=new File(s2);
Where s1 and s2 are two different strings or filenames..etc.
if(f1.lastModified() < f2.lastModified())
{
System.out.println("s1+"is older than"+s2);
}