Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
public class MapFileReader {
String fileToOpen;
public MapFileReader(String fileToOpen) {
this.fileToOpen = fileToOpen;
FileInputStream fis;
ObjectInputStream ios;
MasterField[][] masterField;
try {
fis = new FileInputStream(fileToOpen);
ios = new ObjectInputStream(fis);
} catch (IOException e) {
e.printStackTrace();
}
}
}