Jsp directory file operations

Source: Internet
Author: User
Tags parent directory

Jsp Tutorial Directory file operations

File file1 = new file ("c: tempmynote.txt"); // in windows
File file2 = new file ("/tmp/mynote.txt"); // in linux/unix

Check file path

Import java. io. file;
Public class mainclass {
Public static void main (string [] ){
File myfile = new file ("c:" + file. separator + "jdk1.5.0" +

File. separator, "file. java ");
System. out. println (myfile. getname ());
System. out. println (myfile. getpath ());
  }
}

Obtain remote images

Import java. io. file;
Import java.net. uri;

Public class mainclass {
Public static void main (string [] a) throws exception {

File remotefile = new file (new uri ("file: // index.htm "));
  }
}

Parent Directory

 

Import java. io. file;
Public class mainclass {
Public static void main (string [] ){
File myfile = new file ("c:" + file. separator + "jdk1.5.0" +

File. separator, "file. java ");
System. out. println (myfile. getparent ());
System. out. println (myfile );
  }
}

Determine if it is a directory

Import java. io. file;
Public class mainclass {
Public static void main (string [] ){
File myfile = new file ("c:" + file. separator + "jdk1.5.0" +

File. separator, "file. java ");
System. out. println (myfile. isdirectory ());
  }
}

Is it a file?

Import java. io. file;
Public class mainclass {
Public static void main (string [] ){
File myfile = new file ("c:" + file. separator + "jdk1.5.0" +

File. separator, "file. java ");
System. out. println (myfile. isfile ());
  }
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.