Search:

Type: Posts; User: dineshj83

Page 1 of 3 1 2 3

Search: Search took 0.08 seconds.

  1. Re: Which should i go through 1st(servlets or JSP)???

    If you are planning to work on enterprise applications only those topics makes sense. Start with JDBC then servlets and JSP.
  2. Replies
    2
    Views
    1,203

    Re: Beginner Java help please

    We can't solve your problem here. Try something and post specific errors you face.
  3. Replies
    2
    Views
    941

    Re: Reading only first name from strings

    You can't read half of input but you can still split the string using tokenizer or using split api to get only first name.
  4. Replies
    7
    Views
    1,526

    Re: Java Control Panel

    This could be because new JDK is yet to be updated in PATH environment variable. Kindly check that and update if the update is installed successfully. As you said it could well be due to failure in...
  5. Replies
    2
    Views
    1,472

    Re: Add objects to the neighbors list

    when you meant you got the information from xml file it contains x and y co-ordinates as well as child nodes. Then you have them as well for your calculation. Are you not sure of how to parse xml is...
  6. Replies
    4
    Views
    1,482

    Re: Java Binary Search Help Please!

    Please post specific problems in your program and what is that you have tried. We are not here to do your assignments.
  7. Replies
    4
    Views
    2,229

    Re: clinic registration system

    Post the code with proper highlighted and also explain what exactly is the problem that you face.
  8. Re: Input Validation - Take no Symbols or Numbers

    Do it on a while loop until your validation is successful you must keep taking input.
  9. Replies
    5
    Views
    1,082

    Re: Private access modifier

    access modifier is not dependent on data types. Private access modifier as the name suggests is visible only within the class where its defined.
  10. Replies
    5
    Views
    1,082

    Re: Private access modifier

    What is the kind of help you require with private access modifier?. Please be specific.
  11. Re: Website with aditional functions using WebView

    Yes webview just acts like a container or browser to host your applications and its not suggested to put a lot of logic in webview however if its written as an android app then you can create a new...
  12. Replies
    3
    Views
    957

    [SOLVED] Re: Deprecated functions

    It is not appropriate to use deprecated API's. If you read javadoc for the deprecated API there would be an alternative suggested. Better use the alternative suggested as any bug fixes or...
  13. Replies
    1
    Views
    955

    Re: Creating a background service in java

    You can create a daemon thread to do the same.
  14. Replies
    3
    Views
    987

    Re: Java Certifications

    Do OCJP thats the first level of certifications.
  15. Replies
    12
    Views
    1,239

    Re: how to do dynamic casting for all datatypes

    you can send a subclass of a particular type using generics or mark the argument as object to pass any datatype but however not sure what kind of converter you expect?
  16. Replies
    2
    Views
    1,597

    Re: Running on other computers application

    You can also bundle your file which acts as DB in a jar. Create an executable jar and share it as a standalone app. It need not be client server program.
  17. Replies
    1
    Views
    6,329

    Re: How to use threads to extract information

    What kind of information are you looking to extract and why did you thought of threads for the same?
  18. [SOLVED] Re: I need help figuring out the logic errors in this final project.

    Execute your code and ask specific questions. We can't analyze and correct your algorithm
  19. Re: General question regarding Java, Jpanel, and SQL and preferred method of interacting between them all

    I would suggest to have as an integer. For storing it in DB unless it is a mandatory to be stored i wouldn't store it. If its mandatory prefer to store zero instead of NULL.
  20. Replies
    1
    Views
    1,025

    Re: Databases beginner

    Through Java you can access database using JDBC but not create DB. Do post if you have problems with files approach.
  21. Re: xml file in JAR archive vs xml in classes folder

    Yes the files will be read from the JAR file unlike your java classes which takes priority from classes folder.
  22. Replies
    2
    Views
    1,000

    Re: Parlay Wagering Java Program

    Post your problem you see on the console along with the program to get quick answers.
  23. Replies
    4
    Views
    1,900

    Re: Need help with understanding recursion.

    For identifying number of characters repeating in a given word you don't have to recurse instead you need to loop through the string for each character. I hope this algorithm helps you to write code.
  24. Re: Which is better JSP or PHP for webprogramming

    Each have their unique advantages it all depends on for what kind of applications you want to use these pages decides the technology to be used. As you are already aware of java it would be easier...
  25. Re: Using java program to calculate...I'm stuck !

    Write code and do post if you are struck.
Results 1 to 25 of 70
Page 1 of 3 1 2 3