Results 1 to 3 of 3
Thread: Hi, any chance of a hand?
- 11-10-2011, 04:33 PM #1
Hi, any chance of a hand?
Okay,
Yes this is homework before someone says it and i dont expect an entire answer just a hint or a nudge in the right direction.
I have to make a program with two class's customer and bank.
Thats grand and the rest of the methods are fine.
However one of the methods is a conversion from euro to dollar.
My question is can I somehow import the current conversion rate from the internet instead of supplying it everytime. My lecturer said we can try and do it for extra marks so if you could point me in the right direction that would be great!
Thanks,
John
- 11-10-2011, 04:49 PM #2
Member
- Join Date
- Oct 2011
- Posts
- 5
- Rep Power
- 0
Re: Hi, any chance of a hand?
Hey,
look into httpclient and getmethod :)
use some form of inputstream and buffered reader too
Getting Started with HTTPClient may help
Good luck
- 11-10-2011, 08:54 PM #3
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,405
- Blog Entries
- 7
- Rep Power
- 17
Re: Hi, any chance of a hand?
May I suggest adding a third (utility) class:
This way you can hide the fact how you got the conversion rate and maybe your professor gives an an extra grade for this approach ;-)Java Code:public class MonetaryUnits { public static double getDollarToEuro(double dollar) { ... } public static double getEuroToDollar(double euro) { ... } ... }
kind regards,
JosWhen people rob a bank they get a penalty; when banks rob people they get a bonus.
Similar Threads
-
How to check for errors in input and then give another chance
By HellSpawn in forum New To JavaReplies: 6Last Post: 10-20-2011, 03:39 PM -
if wrong input, you get a new chance
By hreodbeohrt in forum New To JavaReplies: 1Last Post: 10-18-2011, 02:07 AM -
What would you like to change in JAVA if you have the chance to do so?
By ouou in forum Advanced JavaReplies: 3Last Post: 06-11-2011, 05:51 AM -
Java Developers - Want more money? Better Career prospects? Chance to be DV Cleared?
By MNoone in forum Jobs OfferedReplies: 1Last Post: 08-09-2008, 12:10 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks