I don't really know how to do this specific aspect of Java. I have a file that I'm just trying to convert into a string. Obviously this is wrong, but I tried to do a .toString() thing on there. Let me know if there's a better way of doing it that you know of?
File mazeFile = new File(filePath);
String preMaze = mazeFile.toString();
Is there a better method of doing this?