Android App für SRCP gesteuerte Modelleisenbahnen
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package de.erich.railcontrol;
-
- import java.io.IOException;
-
- public class MainCall {
-
- /**
- * @param args
- */
-
- static ParseLoksConfiguration lConf = new ParseLoksConfiguration();
-
- public MainCall(String directory) throws IOException {
-
- lConf.parseConfiguration(directory + "/configuration.txt");
-
- /*try {
- lConf.printConfiguration(directory + "/configuration.out");
- } catch (IOException e) {
- System.out.println("Error: " + e);
- System.exit(0);
- } */
- }
-
- }
|