Search Results

5
votes
2answers
4k views

Best way to list files in Java, sorted by Date Modified?

I want to get a list of files in a directory, but I want to sort it such that the oldest files are first. My solution was to call File.listFiles and just resort the list based on File.lastModified …
2
votes
3answers
857 views

Using multiple SSL client certificates in Java with the same host

In my Java application, I need to connect to the same host using SSL, but using a different certificate each time. The reason I need to use different certificates is that the remote site uses a us …