Search:

Type: Posts; User: newbie

Search: Search took 0.11 seconds.

  1. Replies
    13
    Views
    1,665

    Re: Need help, cannot find error

    Array[] and ArrayList are two different things
  2. Replies
    13
    Views
    1,665

    Re: Need help, cannot find error

    you havent got a getSampleValue() method anywhere in your classes.

    Either create one or seek an alternative way of doing what you need.
  3. Replies
    13
    Views
    1,665

    Re: Need help, cannot find error

    Post your exception error message
  4. Replies
    13
    Views
    1,665

    Re: Need help, cannot find error

    I Think its this:


    samples.add(new Sample("Kings College" + " " + 265));
    You're treating the input as one String.

    try


    samples.add(new Sample("Kings College",265));
Results 1 to 4 of 4