vote up -1 vote down star

I want my program to search wikipedia and get the info it searches for and put it into a large string and output into a file. How can I do that in C++? Any info please tell? need more anwsers please

flag

56% accept rate
Are you sure you don't want to consider using, say, python instead? It's pretty easy to learn, and getting a web page is ridiculously easy. – v3 Apr 10 at 21:49
Hell yeah, and you can always link back into C++ with Boost.Python ;) – Daz Apr 11 at 16:54

3 Answers

vote up 4 vote down

libcURL is pretty popular. I don't know that the interface is especially object-oriented, but it's certainly usable from C++.

link|flag
vote up 1 vote down

There are a number of client APIs for MediaWiki (the wiki engine that powers Wikipedia). Here's a listing. They provide the ability to create/delete/edit/search articles. Nothing in straight C++ but it still may be useful.

DotNetWikiBot was quite useful on one project that I had...

link|flag
For goodness sake... Why is this downvoted? Is it wrong? – Andrew Flanagan Apr 10 at 22:25
+1 for crying. but only because i feel your pain. – Mark Apr 11 at 1:00
I just hate downvotes for an answer without an explanation of why it's not helpful... – Andrew Flanagan Apr 11 at 1:14
vote up 6 vote down

Use wget with the query URL

wget --output-document=result.html http://en.wikipedia.org/wiki/Special:Search?search=jon+skeet&go=Go

This searches for jon skeet and stores the result in result.html

To use it from C++ you can e.g. use the system() call to execute wget in a seperate process.

link|flag
And, if you don't like that route, you can grab the free source code to wget to inform your own solution. – JasonTrue Apr 10 at 21:47
umm can you get a source code or example and post somewhere and post on this website again please – H4cKL0rD Apr 10 at 21:48
And now I know that Jon Skeet was a contributing author of "Groovy in Action". Interesting. – mmyers Apr 10 at 21:48
what i meant was like example code a Whole one – H4cKL0rD Apr 10 at 21:49
What, you mean make the community do the work for you? That's nasty ;-) – lothar Apr 10 at 21:51
show 2 more comments

Your Answer

Get an OpenID
or

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