Load resource content with Google Guava

PHOTO EMBED

Fri Aug 14 2020 12:03:53 GMT+0000 (Coordinated Universal Time)

Saved by @hosuaby #java

URL url = Resources.getResource("com/adelean/junit/jupiter/resource.txt");
try {
    String resourceContent = Resources.toString(url, StandardCharsets.UTF_8);
} catch (IOException ioException) {
    // handle exception
}
content_copyCOPY