Beispiel #1
0
 public void initalize() {
   int j = fio.readfile(localdir, filename).indexOf('j');
   try {
     FileReader in = new FileReader(localdir + "initdata.asdf");
     int c = in.read();
   } catch (FileNotFoundException e) {
     e.printStackTrace();
   } catch (IOException e) {
     e.printStackTrace();
   }
 }
Beispiel #2
0
 public int Readint(String path) {
   FileIO f = new FileIO();
   return f.Readint(path);
 }