So I have made a simple image viewer program, with a JFileChooser, wherein I load an image into the icon of a label. I also save the directory location. I have two buttons in my main application, previous and next, how would I make it so that when I press them, they load either the previous image or the next one from the same directory? I guess it would be some form of regular expression search plus or minus an integer but I'm not sure how this would look, I'm not so bright on regular expressions.
I should probably add that I have a method, draw(BufferedImage image) which takes a BufferedImage sent to it and draws it on the JLabel, and a method loadImage(File file) which loads any image sent to it. So I load the file and then draw it.