ええと、プログラミングでここまでやる必要があるとは思いもしませんでしたが、行き詰まってしまいました..
ビルドする必要があるもののためにある種のエンジンをビルドしていますが、「予想される」エラーが発生します..
すべてのソースが正しいので、それは私を夢中にさせます(少なくとも私はそう思います)。
ソース:
import java.util.*;
import java.io.*;
public class Configurations {
// Storing the file locations in Strings.
public static String MOVE_FILE = "./configs/movement.properties";
// Creating the needed variables for working-out stuff.
public static String HELLO_WORLD;
// Reading certain properties file and getting parameters.
Properties Props = new Properties(); // Asks me to put { { here..
try {
Props.load(new FileInputStream(MOVE_FILE));
HELLO_WORLD = Props.getProperty("MSG", "HelloWorld");
} catch (IOException e) {
System.out.println(e);
}
} // tells me to put }; } here..