473,406 Members | 2,390 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

download stock quote from yahoo

f
I am writing an app in which I need to get the stock quote from Yahoo.
Idealy, I will get a stream from Yahoo's web site and parse that as
string and display the information (price, PE, volumn...).

What class should I use?

If you use "http://finance.yahoo.com/d/quotes.csv?s=YHOO&f=sl1d1t1c1ohgv&e=.csv"
as URL in HttpConnection, you will download a file. How can I obtain a
stream? Is there other URL in Yahoo's site I can get a stream?

Thanks,

ff
Jul 17 '05 #1
6 14319
f wrote:
I am writing an app in which I need to get the stock quote from Yahoo.
Idealy, I will get a stream from Yahoo's web site and parse that as
string and display the information (price, PE, volumn...).

What class should I use?

If you use
"http://finance.yahoo.com/d/quotes.csv?s=YHOO&f=sl1d1t1c1ohgv&e=.csv"
as URL in HttpConnection, you will download a file. How can I obtain
a
stream? Is there other URL in Yahoo's site I can get a stream?

Thanks,

ff

Jul 17 '05 #2
...hmm. Let's try that again, with some text this time.

Andrew Thompson wrote:
f wrote:
I am writing an app in which I need to get the stock quote from
Yahoo.


Good for you. I am reading a group for
c.l.j.programmer's, where folks are
supposed to already know how to consult
the JavaDocs.

Your message indicates that you have not,
and possibly are unaware of their existence.

Please confine your posts to c.l.j.help
for the moment, at least unitl you can
figure how to use the JavaDocs and
ask smart questions on usenet.

--
Andrew Thompson
* http://www.PhySci.org/ Open-source software suite
* http://www.PhySci.org/codes/ Web & IT Help
* http://www.1point1C.org/ Science & Technology
Jul 17 '05 #3
After that reply you are probably thinking "does everyone in this
newsgroup have a stick up their ****?" The answer is 'no'.

Andrew Thompson, if you can't or don't want to help then just don't
reply to the post, there's no need to bite people's heads off.

f. To answer your question. Try adapting the following code for your
application:

// Read an http resource in to a stream
String tAddress = "http://domain/path/to/resource/file.ext";
URL tDocument = new URL(tAddress);
URLConnection tConnection = tDocument.openConnection();
tConnection.connect();
BufferedReader tBufferedReader = new BufferedReader
(new InputStreamReader(tDocument.openStream()));

then read the stream as you would with any other BufferedReader object
(keyboard input, for example).

Hope this is a bit more helpful than Andrew's reply.

Andrew Thompson wrote:
..hmm. Let's try that again, with some text this time.

Andrew Thompson wrote:
f wrote:
I am writing an app in which I need to get the stock quote from
Yahoo.

Good for you. I am reading a group for
c.l.j.programmer's, where folks are
supposed to already know how to consult
the JavaDocs.

Your message indicates that you have not,
and possibly are unaware of their existence.

Please confine your posts to c.l.j.help
for the moment, at least unitl you can
figure how to use the JavaDocs and
ask smart questions on usenet.

--
Andrew Thompson
* http://www.PhySci.org/ Open-source software suite
* http://www.PhySci.org/codes/ Web & IT Help
* http://www.1point1C.org/ Science & Technology

Jul 17 '05 #4
f wrote:
I am writing an app in which I need to get the stock quote from Yahoo.
Idealy, I will get a stream from Yahoo's web site and parse that as
string and display the information (price, PE, volumn...).

What class should I use?

If you use "http://finance.yahoo.com/d/quotes.csv?s=YHOO&f=sl1d1t1c1ohgv&e=.csv"
as URL in HttpConnection, you will download a file. How can I obtain a
stream? Is there other URL in Yahoo's site I can get a stream?

Thanks,

ff


I haven't looked at the yahoo finance page, but I am sure they have a
rss or XML tag somewhere and you can get the quote. I dont much trust
csv or plain text. (that is just me)

Jul 17 '05 #5
Peter Astbury wrote:
After that reply you are probably thinking "does everyone in this
newsgroup have a stick up their ****?" The answer is 'no'.

Andrew Thompson, if you can't or don't want to help then just don't
reply to the post, there's no need to bite people's heads off.

f. To answer your question. Try adapting the following code for your
application:

// Read an http resource in to a stream
String tAddress = "http://domain/path/to/resource/file.ext";
URL tDocument = new URL(tAddress);
URLConnection tConnection = tDocument.openConnection();
tConnection.connect();
BufferedReader tBufferedReader = new BufferedReader
(new InputStreamReader(tDocument.openStream()));

then read the stream as you would with any other BufferedReader object
(keyboard input, for example).

Hope this is a bit more helpful than Andrew's reply.

Andrew Thompson wrote:
..hmm. Let's try that again, with some text this time.

Andrew Thompson wrote:
f wrote:

I am writing an app in which I need to get the stock quote from
Yahoo.


Good for you. I am reading a group for
c.l.j.programmer's, where folks are
supposed to already know how to consult
the JavaDocs.

Your message indicates that you have not,
and possibly are unaware of their existence.

Please confine your posts to c.l.j.help
for the moment, at least unitl you can
figure how to use the JavaDocs and
ask smart questions on usenet.

--
Andrew Thompson
* http://www.PhySci.org/ Open-source software suite
* http://www.PhySci.org/codes/ Web & IT Help
* http://www.1point1C.org/ Science & Technology

Personally I like the comments, I think they are real and I learn more
if people are direct and to the point as opposed to wishy-washy. We are
programmer, we have thick skins.

Jul 17 '05 #6
f
You are sick and fuck you JavaDocs.
"Andrew Thompson" <Se********@www.invalid> wrote in message news:<xG*****************@news-server.bigpond.net.au>...
..hmm. Let's try that again, with some text this time.

Andrew Thompson wrote:
f wrote:
I am writing an app in which I need to get the stock quote from
Yahoo.


Good for you. I am reading a group for
c.l.j.programmer's, where folks are
supposed to already know how to consult
the JavaDocs.

Your message indicates that you have not,
and possibly are unaware of their existence.

Please confine your posts to c.l.j.help
for the moment, at least unitl you can
figure how to use the JavaDocs and
ask smart questions on usenet.

Jul 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Chris Mosser | last post by:
I'm looking to add a page to my site where I can get stock quotes for the wired, but more importantly, the wireless web(ie my cell phone). I know how write the needed php and WAP application, I...
13
by: dan roberts | last post by:
Folks, This is my first Python project so please bear with me. I need to download data from Yahoo Finance in CSV format. The symbols are provided in a text file, and the project details are...
1
by: plato399 | last post by:
I apologize upfront if this newsgroup isn't the correct place for this question, but it seems to be the most appropriate place. My question is surrounding XML-based web services. I'm trying to...
1
by: Lorn | last post by:
I'm going to be attempting my most challenging programming task to date and was wondering if I could get some input on what would be the most efficient way of working with stock price quote data...
7
by: Donlingerfelt | last post by:
I would like to download stock quotes from the web, store them, do calculations and sort the results. However I am fairly new and don't have a clue how to parse the results of a web page download....
5
by: kalyxo | last post by:
Hi all! For one of our web-communities we plan an offer of real time stock quotes incl. advanced notification services. I have the following questions: - Do you know of any services, that...
3
by: yuvalbra | last post by:
Does anyone know how to implement a stock quote using ASP on a website? Any sample code or components, etc., would be appreciated. I try this but got error 500 on page strURL =...
3
by: Ganesh | last post by:
Hi There, Not related to asp.net, but someone might have come across this before. I want to download all london stock exchange price end of each day. what's the best source to do that. may be...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.