I'm following this guide, and it gives me the following code:
InputSource inputSource = new InputSource(new FileInputStream(new File("/path/to/xml/file.xml"))));
What I would like to know, is how I can still have the InputSource inputSource, but instead of grabbing it from a file, to grab it from a String variable that I already have.
Thanks!