• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

doubts

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have some doubts could somebody answer them
1.Is JSDK an outdated Kit ?
If so to use something like Tomcat where do I get guidance ?
2. Can I use MS access to handle data with Java.
What about SQL Server ?
3.What are the strong points in using Java for non web based
applications if any ?
4.Why does the cursor shiver when I am typing this topic ?
Can you fix it as this must be a Java Issue as I feel.
I have lots of other doubts I will come back after some time.

------------------
Sathyajith
 
Sheriff
Posts: 5782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Let me take a byte off your Q3
3.What are the strong points in using Java for non web based
applications if any ?
Portability - Write Once Run Anywhere
Robust - Strong type checkings, error control, exception handling etc, better than other similar languages.
Ability to Support native interfaces - so that you don't have to throw away good things "that other language" has to offer.
Garbage collection - bonus feature for free!! Makes programs less prone to accidental free()s.
Concurrent - support for threading with a lot of API classes that are thread-safe.
Object oriented - and so all the goodies that comes with that.

Remember, Java was never (initially) written for the Web!
Just my two cents worth..
Ajith
 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1.Is JSDK an outdated Kit ?
If so to use something like Tomcat where do I get guidance ?
The JSDK was/is a reference library. It's not so much outdated as it's not "ready for prime time". Tomcat/Jakarta has a lot of documentation, start there.
2. Can I use MS access to handle data with Java.
What about SQL Server ?
Yes, via JDBC and a Type I driver. This is also known as the JDBC-ODBC bridge. I strongly reccommend that you do not use this driver. It is buggy and unsupported. For SQL Server, there are 3rd party Type II and Type IV JDBC drivers both free and for charge. If you don't need a full blown transactional database, check out Cloudscape. It's cheap and very functional as a simple persistent data store.
3.What are the strong points in using Java for non web based
applications if any ?
The previous post attacks this well.
4.Why does the cursor shiver when I am typing this topic ?
Can you fix it as this must be a Java Issue as I feel.
Are you typing in a Java-based browser? The web page is a simple HTML form.
Jesse
 
Sathya Jith
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ajith and Jesse ,
Thanks a lot for clarifying my doubts.
------------------
Sathyajith
 
Hoo hoo hoo! Looks like we got a live one! Here, wave this tiny ad at it:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic