Now it’s official, I will be leading the Java team at B3IT Consulting part time!
Looking forward to take care of you all, both new and old!
Java
Arguments in many methods in the Java APIs are of the type InputStream. This is how to get an InputStream from a String, where argument to getBytes, UTF-8, is the encoding to use:
InputStream is = new ByteArrayInputStream(myString.getBytes(\"UTF-8\"));
[tags]Java[/tags]