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

I am creating one application in java which shows the current value of gold and silver in the as a chart.

But I need to get the Indian value from this link but I don't understand how to do this?.

How can I extract the value from there?

share|improve this question
1  

closed as not a real question by casperOne Oct 24 '12 at 17:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 3 down vote accepted

From what I see on that site, the price is generated as an image. So, you're not going to have much luck pulling the value. You should find some other site that lists the price as text, then pull the HTML in and parse it, looking for the value. OR better yet, use some api that you can call and just get the actual value in a JSON or XML response, rather than digging around in HTML

share|improve this answer
thanks for your reply.... do you have any info about this site? – Sandip Armal Patil Oct 24 '12 at 8:16
which site? some other site that lists the price of gold? – Dr.Dredel Oct 24 '12 at 8:18
ya... which provide me gold value in xml or html format.. – Sandip Armal Patil Oct 24 '12 at 8:25

If you are not using API of that website then you can fetch html and then parse it to get the required information.

UPDATE Here is one site I found that displays gold price as text/html not image so you can use this site and fetch/parse it.

share|improve this answer

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