17 May

Java: Read contents of resource file to String

If you have a resource text file – even if packaged in a JAR file – you can use the following Java 8(+) code to read the contents into a String. This code will also work in a static method (hence the ClassLoader.getSystemClassLoader()). If you’re in a normal method you can use the current instance’s classloader instead.

String contents = "";
ClassLoader classLoader = ClassLoader.getSystemClassLoader();
InputStream inputStream = classLoader.getResourceAsStream(filename);
if (inputStream != null) {
        BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
        contents = reader.lines().collect(Collectors.joining(System.lineSeparator()));
}
24 Apr

First Alexa Skill

We have a very simple and silly Alexa skill live – just because we can. It gives you silly ideas for inspiration. Its called “Thought Leader Craig“, and you can find it in the Alexa Skill store.

The back-end service runs as an AWS Lambda function. If the skill is slow to respond on first use, its probably because the Lambda function needs to cold-start as it hasn’t been used for a while.

The skill has actually been live since December 2017 (with a number of updates since then).