Search:

Type: Posts; User: Norm

Search: Search took 0.22 seconds.

  1. Re: How to import information from a file, and use it to calculate and display serval things?

    To see where the program is looking for the file, print out the absolute path (see File class API doc for the method name) of the fileObject variable.
  2. Re: How to import information from a file, and use it to calculate and display serval things?

    G** I hate the IDEs these OPs use. The error messages don't give out information about what the error is.
    When I use javac with the code I get this error message:


    Bank.java:13: error:...
  3. Re: How to import information from a file, and use it to calculate and display serval things?

    Are you getting any errors? If there are no errors then code must be executing.
    Did you add any calls to the println method to the constructor and the methods that you want called?
    Did any of them...
  4. Re: How to import information from a file, and use it to calculate and display serval things?

    Are the assignment statements that assign values to the class variables being executed? If they are not executed then the variables values won't be changed. Add some println statements to print a...
  5. Re: How to import information from a file, and use it to calculate and display serval things?

    Where is the code that is supposed to assign values to those variables? Is it being executed? Do some desk checking of the code to see where the assignments are made and then back track to see where...
  6. Re: How to import information from a file, and use it to calculate and display serval things?

    Compile it, execute it and see what it outputs.
  7. Re: How to import information from a file, and use it to calculate and display serval things?

    Where is the definition for the BankAccount class? Did it compile without any errors?
  8. Re: How to import information from a file, and use it to calculate and display serval things?

    Where is the definition for the BankAccount class? Did it compile without any errors?

    BTW What you posted is not the full text of the compiler's error message. The full message has more info.
    ...
  9. Re: How to import information from a file, and use it to calculate and display serval things?

    Please copy the full text of the compiler's error message and paste it here.
Results 1 to 9 of 9