• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

FIle.list() for specific file types

 
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it possible to use the list() method of the file class to create an array of only certain file types.  For example, say I wanted to search a given directory for files ending in .ser.  Or would I have to create the original array using the list command then create a new array searching for the correct file types?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes. Take a look at the version of the method that takes a parameter.
 
Paul Peterson
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I found an example for filter filename and modified it to fit my application.  Obviously I missed something, probably something silly.  I am getting a null pointer exception.  This is what I am trying to use:

 
Bartender
Posts: 2236
63
IntelliJ IDE Firefox Browser Spring Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
First, you set f to null at line 5.
Then you call a method on f on line 26.
That's the reason of NPE.

Please provide SSCCE when asking questions.
I was not able to run your code because it missed declarations of master, Order, deserializeOrders, orderFiles, etc...
 
author
Posts: 23951
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Paul Peterson wrote:Obviously I missed something, probably something silly.  I am getting a null pointer exception.  This is what I am trying to use:



Well, you set the "f" reference variable to null, so, when you tried to deference it to call the listFiles() method, you will get a null pointer exception.

Henry
 
Paul Peterson
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As I mentioned, I was following an example I found online.  And we know if it's on the internet it must be true...

This was the source I referenced...



A nudge in the correct direction is much appreciated.
 
Paweł Baczyński
Bartender
Posts: 2236
63
IntelliJ IDE Firefox Browser Spring Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please note line 14 of the "Internet code" and compare it with yours.
 
Paul Peterson
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you, that cleared the error.  
 
reply
    Bookmark Topic Watch Topic
  • New Topic