CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 1999
    Posts
    156

    Java beginner questions

    I need some help please.

    My job requires me to do Java. My program has to be cross platform, so Java is the best? choice. The problem is when I start to learn a bit of Java, I get really confused. I encountered things like Applet (which I figure out what is it) Bean, Swing, JNI and other interesting 'aliases' of Java.

    I am comfortable with C++ and the OO stuff and I hope that will give me a gentle start, it seems that is not the case. To be specific, my program does not need a beautiful GUI, it is more like a cookie. This 'cookie' can do things like storing (securely) a strong and hard to remember user password and login systems on behalf of a user etc. when a user gives a simple PIN. Please someone tell me should I use Bean, Swing or other lovely named thing.

    Thank you in advance.


    Will


  2. #2
    Join Date
    Jul 1999
    Location
    Metro DC
    Posts
    32

    Re: Java beginner questions

    One thing that I would looking into is using servlets (server-side java) and have the front end be a HTML form. The best book to get started with for servlets is Oreilly's "Programming Servlets".

    In reference to your starting with the Java language, the best place is to go to the java.sun.com web site and start with the tutorial or use it as a reference to what you do not understand. If you understand C++ and OO then Java will be a very easy language for you to learn.

    Good luck in your quest for Java knowledge


  3. #3
    Join Date
    Aug 1999
    Posts
    3

    Re: Java beginner questions

    If you like to store username & password with respect to cookies, better go for servlet programming. In servlets, u can use cookies to store the authenticated info by encrypting and can recognise by the userPIN like..

    ALL THE BEST



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured