Join
Blogs
Questions
Videos
Tags
Members
Search
 
 
Create your own blog, earn points and get popular!

Andr's blog

Andr's picture

Java String indexOf Example

4
Your rating: None Average: 4 (5 votes)
  1. /*
  2. Java String indexOf example.
  3. This Java String indexOf example describes how Java String indexOf method is used to
  4. find particular character or string within given string object.
  5. */
  6.  
  7.  
  8. public class JavaStringIndexOfExample{
  9.  
  10.  
  11. public static void main(String args[]){
  12.  
  13.  
  14. /*
  15. Java String class defines following couple of indexOf methods to
  16. search character or string within the g
Andr's picture

Java Servlet Tutorial, JavaDeveloper's Java Servlet Resources

3.666665
Your rating: None Average: 3.7 (3 votes)
Java Servlet Tutorial
Java servlet tutorial. This tutorial was a very early outline of the material that eventually became Core Servlets and JavaServer Pages book.
Java Servlet Tutorial

Andr's picture

SCWCD Book, List of Excellent SCWCD Certification Books

4
Your rating: None Average: 4 (1 vote)
SCWCD Books
Andr's picture

SCJP Certification Books, Certification books for Java Programmer Certification

3
Your rating: None Average: 3 (3 votes)
SCJP Books
Andr's picture

Java HashMap Example

1.8
Your rating: None Average: 1.8 (5 votes)
  1. import java.util.HashMap;
  2.  
  3. public class HashMapExample{
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         HashMap myMap = new HashMap();
  8.  
  9.         map.put("1", "A");
  10.         map.put("2", "B");
  11.         map.put("3", "C");
  12.  
  13.         String one = (String) map.get("1");
  14.         System.out.println(one);
  15.     }
Andr's picture

Anonymous Array

3.285715
Your rating: None Average: 3.3 (7 votes)
Anonymous Array

In java it is perfectly legal to create an anonymous array using the following syntax.

new <type>[] { <list of values>};

Anonymous array example

new int[]{1,2,3};
Andr's picture

SCWCD Certification, Online Certification Resources

0
Your rating: None
Sun Certified Web Component Developer (SCWCD) Exam (310-080)

Sun Certified Web Component Developer (SCWCD) certification tests the knowledge of Java 2 Enterprise Edition web components i.e. Servlet and JSP, used to develop J2EE applications.
Andr's picture

SCWCD Exam Simulators, SCWCD Exam Simulator Resources

0
Your rating: None
Sun Certified Web Component Developer (SCWCD) Exam Commercial Simulators

Whizlab's SCWCD Simulator
Andr's picture

SCWCD Mock Exams, SCWCD Sample Questions

2.4
Your rating: None Average: 2.4 (5 votes)
Sun Certified Web Component Developer - SCWCD Mock Exams
Andr's picture

SCWCD Notes and SCWCD Resources

5
Your rating: None Average: 5 (2 votes)
Syndicate content