CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Cnile

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. Replies
    8
    Views
    52,947

    Re: Getting Java Error Code

    If the exception for which you want to show the errorcode supports this thing, then yes. :)
  2. Replies
    8
    Views
    52,947

    Re: Getting Java Error Code

    try {
    ...
    } catch (Exception e) {
    System.out.println(e.getMessage());
    }

    That's what I can think of in 1 minute and on a monday morning. ;-)
  3. Re: Sending Commands to DOS prompt from Java App

    RunTime api
  4. Replies
    4
    Views
    8,770

    Re: Johnson-Trotter Algorithm

    Go look on wikipedia.
    or just click on following link: http://en.wikipedia.org/wiki/Steinhaus-Johnson-Trotter_algorithm

    There you have some good links to other places.
  5. Replies
    3
    Views
    1,045

    Re: Java Developer Opportunity

    Military experience?!
    Why could that be a plus?

    Don't get me wrong I absolutely don't see it as a negative but I wonder why it would matter if you have military experience or are a part of a...
  6. Replies
    4
    Views
    1,851

    Re: steps for deploying a JSP in eclipse

    That's not a real solution, that's just prolonging the inevitable.
    You have to know first how everything works and then you can start using tools like myeclipse or whatever to make your life a bit...
  7. Replies
    6
    Views
    2,349

    Re: Exception : java.lang.NoClassDefFoundError

    Uninstall previous versions of java and then reinstall Java5 SDK
  8. Replies
    4
    Views
    1,851

    Re: steps for deploying a JSP in eclipse

    Did you deploy the jsp file to tomcat container?
    Are you sure that tomcat is up and running? Can you access the management url of tomcat?
  9. Thread: Array Object

    by Cnile
    Replies
    5
    Views
    726

    Re: Array Object

    This is what got me confused dlorde. :) To me this made sense as print all numbers between 15 and 43.
    So 15, 16, 17, ..., 43
    If it would say print all numbers from the array that are between 15...
  10. Thread: Array Object

    by Cnile
    Replies
    5
    Views
    726

    Re: Array Object

    The way I read the assignment it has nothing to do with an array.
    Are you giving us the complete assignment?

    Like masher says "for loop", that's what I would think too if you want to just print...
  11. Replies
    4
    Views
    636

    Re: Constructor Error

    For crying out loud, please use the "code" tag when posting code.
    It really stops people from helping you because we do not want to look at the code without any formatting.

    ...This post would...
  12. Replies
    10
    Views
    2,803

    Re: Using Javac from the command line.

    You need to add the java/bin dir to your path.
    How to do this can be easy found using google. :)
  13. Thread: RAD Development

    by Cnile
    Replies
    3
    Views
    1,235

    Re: RAD Development

    Eclipse or NetBeans.
  14. Replies
    2
    Views
    2,502

    Re: Eclipse and Tomcat problem

    You need to install tomcat separately.
    The plugin in Eclipse is only to control/configure Tomcat from within Eclipse.
  15. Replies
    6
    Views
    832

    Re: what is the paremeter of running?

    Righto!
    Should have read his post more attentively. :)
    Wrong forum it is.
    Can't help you with javascript. Don't know enough about that to answer your question.
  16. Replies
    6
    Views
    832

    Re: what is the paremeter of running?

    public static void main (String [] args)
    is the method name of you "run"-method.
    when you enter a param on the commandline then they will be in the args array.
    so param1 will be in args[0], param2...
  17. Replies
    5
    Views
    937

    Re: Having a problem importing a Java package

    those packages should be in the same folder structure as your exercise that you are trying to compile or they can be somewhere else but then that location needs to be in the classpath.
  18. Replies
    3
    Views
    700

    Re: New programmer, need help

    More specific detailed questions for help are a lot easier for us to help you.
    But I'll give it a shot.

    You'll have to make a Java class Player that has all the attributes of a player.
    Then you...
  19. Replies
    1
    Views
    1,154

    Re: put file data in an IData object

    Maybe you should check http://advantage.webmethods.com for a good answer to that.
  20. Thread: help me!!!

    by Cnile
    Replies
    1
    Views
    746

    Re: help me!!!

    ... huh!
    A little bit more of an explanation would be nice.
  21. Replies
    5
    Views
    1,332

    Re: java beginner need help

    !! please use the [ code ] tag.
    It makes it much more clearer for others to look at your code !!

    First, what is the B102 package?
    Second, use indentation, what kind of explanation is that: I'll...
  22. Thread: JSP in Eclipse

    by Cnile
    Replies
    3
    Views
    773

    Re: JSP in Eclipse

    If it is just editing that you want and not seeing code in fancy colours and have extra options, then you don't need to install myeclipse to edit jsp files.
    Just open them in eclipse and then you'll...
  23. Replies
    10
    Views
    3,671

    Re: Exception: java.lang.NullPointerException

    Does your database connection work and are all your files in the correct directories and able to communicate with each other.
  24. Replies
    10
    Views
    3,671

    Re: Exception: java.lang.NullPointerException

    If only people would start using the code tag when posting source code on this forum...
    You would get lots more reaction I believe. :-)
  25. Replies
    2
    Views
    1,381

    Re: JSP include, Please help!!!

    when you do an include then the jsp code in the include file is just copy pasted to those other pages when the server is accessing those files.

    How exactly to use the same variable on several...
Results 1 to 25 of 32
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured