Well, there are many different ways to get a file in Java, but that’s the general gist.
Don’t forget that you’ll need to wrap that up inside a try {} catch (Exception e){}
at the very least, because File is part of java.io
which means it must have try-catch block.
Not to step on Ericson’s question, but if you are using actual packages, you’ll have issues with locations of files, unless you explicitly use it’s location. Relative pathing gets messed up with Packages.
ie,
src/
main.java
x.txt
In this example, using File f = new File("x.txt");
inside of main.java
will throw a file-not-found exception.
However, using File f = new File("src/x.txt");
will work.
Hope that helps!