Answer the question
In order to leave comments, you need to log in
How to solve the problem with returning the value of resource.getPath() from resources?
There is a file in Resources connection.yaml:
YamlReader reader = null;
try {
URL resource = Client.class.getClassLoader().getResource("connection.yaml");
System.out.println("resource.toString() = " + resource.toString());
System.out.println("resource.getFile() = " + resource.getPath());
reader = new YamlReader(new FileReader(new File(resource.toURI())));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
resource.toString() = file:/C:/Servers/Repository/Templates/out/production/resources/connection.yaml
resource.getFile() = /C:/Servers/Repository/Templates/out/production/resources/connection.yaml
Answer the question
In order to leave comments, you need to log in
YamlReader yamlReader = null;
try (InputStream resourceAsStream = DrugDealerValidator.class.getResourceAsStream("connection.yaml");
Reader reader = new InputStreamReader(resourceAsStream);
YamlReader yamlReader = new YamlReader(reader)) {
// работаем с yamlReader
}catch (IOException e) {
e.printStackTrace();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question