Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

2 Answers

up vote 11 down vote accepted

Use a StringReader instead of a FileInputStream.

See the documentation for StringReader

example:

InputSource inputSource = new InputSource( new StringReader( myString ) );
share|improve this answer
Worked like a charm. Thanks mate. – Chiggins Nov 25 '10 at 21:04
@Chiggins: No problem - be sure to mark it as an accepted answer if it worked for you. – Gavin H Nov 25 '10 at 21:05
I was gonna mark it when I commented, but I still had to wait a few minutes :O – Chiggins Nov 25 '10 at 21:10

InputSource inputSource = new InputSource(new java.io.StringReader(string)); if it is org.xml.sax.InputSource.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.