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?
|
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.
|
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 |
|||||||
|
|
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. |
||||
|
|