Search:

Type: Posts; User: techiepro

Search: Search took 0.11 seconds.

  1. Re: Need Help with a do while loop I'm not sure if right Please Help!!

    Read the tutorial : The while and do-while Statements (The Java™ Tutorials > Learning the Java Language > Language Basics)
  2. Re: Program goes into infinite compilation. University project - Library Program.

    Please attach a recording so that we can get to the root cause.
  3. Replies
    3
    Views
    3,145

    Re: Unable to access js file from jsp.

    move the folder js inside WEB-INF and accordingly change the path of js in the jsp...better to give relative path with reference to the container
  4. Replies
    1
    Views
    1,828

    Re: Tomcat server Issue

    Please check in the logs as what error is coming.
  5. Replies
    4
    Views
    1,481

    Re: No action time out

    I did not got your question. Can you please elaborate ?
  6. Re: Program goes into infinite compilation. University project - Library Program.

    It compiles fine in my machine
    Can you please give the details ....like which tool/IDE are using to compile the class ?
  7. Re: Using methods of one package in another package in same application? To import or not?

    Sometimes there arises a need when a class that needs to be accessed from within the same package then default modifier is used.
    For example : a third party library/jar which has a class used by...
  8. Replies
    6
    Views
    1,315

    Re: Understanding Classes and Objects

    Let me know what error are you getting exactly !!
  9. Replies
    4
    Views
    1,123

    Re: ArrayOutOfBoundsException

    Please debug the problem with a debugger --- as to check where the logic is breaking.
  10. Re: Using methods of one package in another package in same application? To import or not?

    Yes we need to import. Only when its imported then comes the part whether it can be accessible depending on the visibility(private, public, protected)
  11. Replies
    2
    Views
    868

    Re: I need some help

    Can you please let us know which part is not working so we can focus on the same.
  12. Replies
    3
    Views
    1,268

    Re: Help with inheritance

    Person class --> When we write a constructor explicitly(in this case name,year) we are telling the users that if they want to create a Person object then name and year is mandatory.
    Now another...
  13. Replies
    4
    Views
    1,192

    Re: Help with designing a library programme

    Put down the detail requirements.
  14. Replies
    3
    Views
    1,052

    Re: Please help this is strange.

    The class BallMover should not be static. Make it non static. That would resolve the issue
  15. Re: If statement problem

    Yes we must use equals method.
    When a user inputs the abbreviation the String is constructed with the new operator and hence new String object is created. This "==" checks if both the references...
Results 1 to 15 of 15