Showing posts with label tutorial. Show all posts
Showing posts with label tutorial. Show all posts

Check out the tutorial at the Sun site

 Java is everywhere. Of the most  authenticate sources, that could be used for learning Java, I trust sun the most. The tutorial provided by java.sun.com normally called as the Java Tutorial at java.sun.com/docs/books/tutorial , is a very good one. I have scanned the tutorial many times earlier also, and every-time found it to be the most updated and authentic resource on the net.

The Java technology always keep coming up with new changes and features. Therefore the need to continuously update the link and site is very important. Sun is the provider of Java, and so they have to maintain the most updated links and material. The best part I found with this site was that the tutorial was concise and up to the point.

The site does not go in unnecessary examples or extra elaboration. It sticks to the basics and explains them well. The section for Trail Covering the basics, consists of many great Java technology articles. It does not deal only with basic Java, but the tutorial for Java Collections and Swing is also provided. This is an extra bonus for all those who are interested in getting to the roots of Java.

The section of specialized trails and lessons consists of many advanced Java related tutorials and articles. To name a few, the trail consists of articles and tutorials on Networking, Generics, JavaBeans, JDBC, JMX, JNDI, RMI, Reflection, Java Security, Graphics, Socket Programming in Java, etc.

All these are very important fields of Java for an advanced programmer. Like JDBC which is used for Database connection establishment, and retrieval and updation of records. The process involves many commands and is a separate field altogether.

JNDI and RMI, are used for Remote Method Invocation. This is a very large field in itself. The part of RMI is important for a distributed architecture. Like your server is at a particular place, and the application is running at a different place. There need to be interaction between this application and the server. RMI along with JNDI are used here.

Like this there are many fields from which the person can choose depending upon his or her intrest. It is vast ocean of resources for Java. Go ahead and give it a look, Hope that you will also find something very interesting and useful from this site.

Thats it for now. Keep buzzing Java Code Online.

Read More..

Java String Replace Example Tutorial

This String replace example in Java will show you how to replace String in Java both at character level and by using regular expression. Since String is final in Java every time you replace String you will get a new String object only if your actually replace anything on original String otherwise replace methods of String return same String object. String Class in Java provides 4 methods to replace String in Java. Those methods allow you to replace character from String, replace CharacterSequence from String, replace all occurrence of pattern in String or just first occurrence of any pattern in Java. We will also see important points on String replace method and how to make best use of regular expression while replace string in Java.

This article is on series of my other String article like 2 ways to Split String in Java and how to convert String to Date in Java. String is one of the most important classes in Java and having a good knowledge of String class is mandatory for any Java developer.
Read more »
Read More..