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 trying to create a FileReader (not a Document) from an XMLResponse like this :

    // Parse XML Response
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = factory.newDocumentBuilder();
    InputSource inStream = new InputSource();
    inStream.setCharacterStream(new StringReader(XMLResponse));
    Document doc = db.parse(inStream);

But I don't know how to use the InputSource to create it ?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can't create a FileReader, because the response may not be coming from a file. But, as it seems, you can obtain a Reader, which is the proper way to refer to readers.

If a method requires specifically a FileReader, the method is not designed properly.

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.