Hello,
String objFilename = "/test.obj";
objFile = new File(objFilename);
fileReader = new FileReader(objFile);
bufferedReader = new BufferedReader(fileReader);
So with this is working… but the File is in the res folder So e think I have to use something like getClass().getResource(objFilename);
but When I do that tells me “The constructor File(URL) is undefined” … so how can I set this to work?