Implement file filtering in Java

Source: Internet
Author: User

For example, I only want to obtain the. Java file under a certain path.

You only need to implement the filenamefilter interface.

For example:

Private class filefilter implements filenamefilter {
Public Boolean accept (File Dir, string name ){
Return name. endswith (". Java ");
}
}

Then, call the list method and use the file filter as the parameter.

String [] allnames = new file (PATH). List (New filefilter ());

The obtained allnames array is all. java files under the Path.

For the file selection box in swing, call the setfilenamefilter method.

Filedialog. setfilenamefilter (Java. Io. filenamefilter)

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.