Some time back I was trying to get the resources in database (to be precise image resource) in my SSJS / Java code. I tried a lot of options like ClassLoader.getResourceAsStream, MyClass.class.getResourceAsStream but no success. Then today while going through the sample database of Extension Library I ran into a piece of code which got the image resource as stream using a single line of code.
As simple as that. In case of Java you would write like this:
In my tests this worked for getting image resources, file resource and style sheets as streams.
As simple as that. In case of Java you would write like this:
In my tests this worked for getting image resources, file resource and style sheets as streams.