I have the following example
package.one-which contains Map.java and a maps.package containing map0.map
How do I call map0.map<--A text file from maps?
I have tried various different formats.
//HardCoded mapname varient
FileReader theFile = new FileReader("c:\\temp\\map0.map");
//From c: temp
//FileReader theFile = new FileReader("c:\\temp\\"+mapName);
this problem line-->FileReader theFile = new FileReader("maps\\"+mapName);
I have tried /maps/+mapName however it does not work mapName is passed into the function and will be dynamic.
How do I call map0.map<--A text file from maps?