Visit Sponsor

Core Java

Core Java Views: 7

Playing audio from mobile file system in J2ME

Here is the code sample for reading a audio file from mobile file system and plays. Here i have used JSR 75 for FileConnection and player...

Read More

Core Java Views: 3

Introduction to JSON Basics

JSON (JavaScript Object Notation) is one of the most popular and widely accepted data exchange format originally specified by...

Read More

Core Java Views: 4

Sort Array ascending or descending using comparator in Java

Quick Java code snippet to sort Array ascending or descending using comparator in Java....

Read More

Core Java Views: 5

How to Test String Equality in Java?

Sample program to test String Equality in Java using equals to (==) operator and String.equals() method....

Read More

Core Java Views: 3

String Concatenation Test in Java

Sample Java program to concatenate two strings using plus (+) concatenation operator....

Read More

Core Java Views: 3

Reverse of String in Java

Quick Java code snippet to reverse java string using for loop. import java.util.Scanner;class ReverseString{ public static void main(String...

Read More

Core Java Views: 2

Insertion sort example in Java

Code snippet to sort array using insertion sort algorithm in java....

Read More

Core Java Views: 6

String length and trim string in java

Code snippet explains the usage of String class length and trim() method....

Read More

Core Java Views: 3

How to change upper case string to lower case in Java

Quick Java code snippet to change case of a String in Java. It uses toUpperCase() and toLowerCase() methods present in java.lang.String...

Read More

Core Java Views: 3

Linear / Sequential Search Example in Java

Quick Java code snippet to show Linear / Sequential Search....

Read More
Close