Search:

Type: Posts; User: Norm

Search: Search took 0.13 seconds.

  1. Re: Getting information from API Class into main body....

    Try asking what to do on an Eclipse users forum.
  2. Re: Getting information from API Class into main body....

    Usually deprecated classes will continue to work for a while.
  3. Re: Getting information from API Class into main body....

    Do you know what the header should look like?
    There are test servers you can use that will show you what the program is sending.
    If you can see what is sent by the program and compare that to what...
  4. Re: Getting information from API Class into main body....

    Those do not look like java programming errors. If you are trying to interface to some site, perhaps someone at the site could help you.

    If you can identify a java programming problem, please ask...
  5. Re: Getting information from API Class into main body....

    Good luck.
  6. Re: Getting information from API Class into main body....

    Can you make a small, complete program that compiles, executes and shows the problem? Your short code sections don't show the problem enough to understand it.
  7. Re: Getting information from API Class into main body....

    This is getting to be a waste of time. You need to post the full text of the error messages.
  8. Re: Getting information from API Class into main body....

    Please copy the full text of any error messages and paste it here. Not an image.


    Where is REI defined?
  9. Re: Getting information from API Class into main body....

    Please explain.
  10. Re: Getting information from API Class into main body....

    Don't post your current code, make a special smaller version that only shows the problem, nothing more is needed and will only confuse the issue.

    What is "API"? I use those letters for...
  11. Re: Getting information from API Class into main body....

    Can you make a small, complete program that compiles, executes and shows the problem? Your short code sections don't show the problem enough to understand it
  12. Re: Getting information from API Class into main body....

    What is the problem then?
  13. Re: Getting information from API Class into main body....

    Ok, that looks like good code. What is the problem?
  14. Re: Getting information from API Class into main body....

    Can you make a small, complete program that compiles, executes and shows the problem? Your short code sections don't show the problem enough to understand it
  15. Re: Getting information from API Class into main body....

    I'm not sure I understand what you are asking.
    I was using values from the code you posted:

    Ticker ticker = new Ticker();
    ticker is a variable that has a reference to an instance of the Ticker...
  16. Re: Getting information from API Class into main body....

    ticker is the variable that does the saving of the reference to a Ticker object.
    Define ticker at the class level so any methods can use it to reference the Ticker object.
    Note: a variable can be...
  17. Re: Getting information from API Class into main body....

    Save the reference(ticker??) to the class (Ticker) whose methods you want to call and use it to call the class's methods to get data from it.
    data = ticker.getData();

    The method getData() would...
Results 1 to 17 of 17