Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Linux Archive
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-18-2008, 12:27 AM
Member
 
Join Date: Jan 2008
Posts: 4
violinssoundcool is on a distinguished road
Java newby
Hi. I am new to java. I have taken two introductory classes, which taught me very little, and we only worked with applications. Now, my job needs me to be able to write a program as soon as I can. I need it to be deployed on an iSeries, read input and use SQL to search and retrieve results from a datafile or two, display the results on a different screen, and run in internet explorer (I guess that means an applet). I really don't know where to start. I'm reading this teach yourself Java in 21 days book, but it seems like I'm learning about everything but what I need to (arrays, casting, etc.) I need a resource that will explain the necessary concepts as if to a beginner. Is there any of this out there, or can you guys offer any suggestions?
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 01-18-2008, 03:52 AM
CaptainMorgan's Avatar
Moderator
 
Join Date: Dec 2007
Location: NewEngland, US
Posts: 841
CaptainMorgan will become famous soon enoughCaptainMorgan will become famous soon enough
Send a message via AIM to CaptainMorgan
Welcome violin

Quote:
I need a resource that will explain the necessary concepts as if to a beginner.
Absolutely, see Sun for a great track for beginning.

See you around!
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
to our beloved Java Forums!
(closes on September 4, 2008)
Want to voice your opinion on your IDE/Editor of choice?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
!
Got a little Capt'n in you? (drink responsibly)
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 01-18-2008, 04:26 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 4,412
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Make clear steps of your project first, what should done first, what is next and so on. Then try to find the solutions. Don't think about the project as a bulk. If you make clear steps, all the solutions need are in the Suns' official web site. And also you can find a lot on web search.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
  #4 (permalink)  
Old 01-18-2008, 05:27 PM
Member
 
Join Date: Jan 2008
Posts: 4
violinssoundcool is on a distinguished road
Thanks for the links. I have used the java website before to look up API documentation. I guess I thought that since it was so difficult for me to understand that the tutorials would be also. Really, they use the most basic language that I've found. I'm reading through the tutorials now, but I need to get my direction pinned down. So, I have a few further questions that I don't think will be addressed in the tutorials until much later. I would like to be able to report to my boss the specific path that I will be taking.

1. If the program needs to be run in an internet browser, does that automatically mean that it needs to be an applet?
2. Can I do the same things in an applet as I can in an application? Most of what I have seen of applets are simple pictures or other graphical objects that are inserted into HTML. Is it possible for the applet to be a full interactive program?
4. Will I need to use JDBC or something else like Hibernate to access the data?

Last edited by violinssoundcool : 01-18-2008 at 06:22 PM.
Bookmark Post in Technorati
Reply With Quote
  #5 (permalink)  
Old 01-23-2008, 05:16 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 4,412
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Quote:
Originally Posted by violinssoundcool View Post
1. If the program needs to be run in an internet browser, does that automatically mean that it needs to be an applet?
In simple words, web based Java application called Applets. In simple terms, I said again. Actually if you want to run your application on a browser, yes you have to work on applets.

Quote:
Originally Posted by violinssoundcool View Post
2. Can I do the same things in an applet as I can in an application? Most of what I have seen of applets are simple pictures or other graphical objects that are inserted into HTML. Is it possible for the applet to be a full interactive program?

Not much clear you question. Anyway, what you have done is write an application which is able to run on the browser. You can develop a full interactive program using applet. Don't you have seen any such Java applications. Simple games specially.


Quote:
Originally Posted by violinssoundcool View Post
4. Will I need to use JDBC or something else like Hibernate to access the data?
Depends on you application you can use any DB connection. You can use Access at the starting point in your application. JDBC is one of a list of them..
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
  #6 (permalink)  
Old 01-25-2008, 05:09 PM
Member
 
Join Date: Jan 2008
Posts: 4
violinssoundcool is on a distinguished road
Change of plans. Instead of using applets, it looks like I will be using servlets, jsp, and beans. I am told that they are safer and are designed for running on servers. It seems that a servlet is to the web server what applets are to the client. Is this correct?
Bookmark Post in Technorati
Reply With Quote
  #7 (permalink)  
Old 01-26-2008, 07:28 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 4,412
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Yes it is. Applets are used in client side applications. To handle the server side, you have to use server side language. I always used Applets and Servlets in my projects.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +3. The time now is 02:20 PM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org