B1
Size: a a a
B1
VS
VT
VS
B1
B1
VS
B1
VS
B1
.
VV
private static final Properties configProperties = new Properties();
ClassLoader loader = Thread.currentThread().getContextClassLoader();
InputStream stream = loader.getResourceAsStream("config.properties");
configProperties.load(stream);
configProperties.getProperty("simple_russian_text") // will be return ÐÑивеÑ
C
private static final Properties configProperties = new Properties();
ClassLoader loader = Thread.currentThread().getContextClassLoader();
InputStream stream = loader.getResourceAsStream("config.properties");
configProperties.load(stream);
configProperties.getProperty("simple_russian_text") // will be return ÐÑивеÑ
VV
FileInputStream input = new FileInputStream(new File(prop));
configProperties.load(new InputStreamReader(input, StandardCharsets.UTF_8));
VV
E
TT
ИД
IF