N
N
Nikolay Baranenko2018-11-16 11:14:48
Java
Nikolay Baranenko, 2018-11-16 11:14:48

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();
        }

as a result
resource.toString() = file:/C:/Servers/Repository/Templates/out/production/resources/connection.yaml
resource.getFile() = /C:/Servers/Repository/Templates/out/production/resources/connection.yaml

how to get rid of "/"?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Evhen, 2018-11-16
@drno-reg

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 question

Ask a Question

731 491 924 answers to any question