Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
const XMLDataNode *pointsNode = node->GetChildren().at(0);
std::wistringstream pointsstrm(*pointsNode->GetInnerText());
pointsstrm >> loadedGame.points;

This is code I've written to pull an int from an XML file and pass it into loadedGame.points (an int). However, this isn't working. It compiles but doens't give the right value. Why is that? XMLDataNode is a class that manipulates xmllite.dll.

share|improve this question
There is information missing - of what type is loadedGame.points, what is the input you feed into the stringstream, what library does XMLDataNode come from? – Georg Fritzsche Dec 7 '09 at 2:47
loadedGame.points is an integer (listed in the description). I'll add more to it, though. – Chris Dec 7 '09 at 2:49
Actually, I'm not sure what more information you need. The input fed into strinstream is shown above (it's *pointsNode->GetInnerText()) and loadedGame.points is an integer. XMLDataNode is a class that makes use of xmllite – Chris Dec 7 '09 at 2:53
I meant the/one actual string returned by GetInnerText(). – Georg Fritzsche Dec 7 '09 at 20:52

1 Answer

Time for some wild guesses!

I'll bet you that the text you get from *pointsNode->GetInnerText() isn't what you think it is. Have you checked that it is indeed exactly the text you want? In particular, could it contain whitespace? Parsing a nicely formatted (i.e. indented, broken into lines, etc) XML file without a schema to reference ends up meaning that all sorts text nodes involving whitespace will end up in your DOM tree.

share|improve this answer
1  
Though of course, my std::wistringstream (GNU libstdc++6) seems to ignore whitespace when extracting an integer. There's still a valid concern -- are you sure that what's returned by *pointsNode->getInnerText() is what you expect it to be? A debug print statement might be quite handy here. – Managu Dec 7 '09 at 5:02

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.