­
June 2016 - Yaar No Technology

Search the Whole World Here.,.,

How do I reverse a string?

How do I reverse a string?

Below is an example code that reverse a string. In this example we useStringBuffer.reverse() method to reverse a string. In Java 1.5, a new class...
WordCount

WordCount

Program  that compares counting words in files using an ArrayList and a Map. import java.io.File; import java.io.FileNotFoundException; import...
SimpleWordCount

SimpleWordCount

Program demonstrating use of a map to count the frequency of words in a file. import java.io.File; import java.io.IOException; import java.util.Map; import...
Stopwatch class

Stopwatch class

A class for measuring how long it takes for a program to run /** A class to measure time elapsed. */ public class Stopwatch { private long startTime; ...
BinaryConverter.

BinaryConverter.

A program with examples of various Java syntax that converts a base 10 int to base 2 String. public class BinaryConverter { public static...
How do I generate random string?

How do I generate random string?

package org.kodejava.example.security; import java.security.SecureRandom; import java.util.Random; public class RandomString { public static final...
String Example

String Example

A few brief examples of String manipulations public class StringExample { public static void main(String[] args) { String s1 = "Computer Science"; int...
For loop

For loop

A simple example of using for loops to calculate factorial. Uses the built in int data type so only good to 13! public class Factorial { public static...
Calling Methods

Calling Methods

 A sample of how to call methods in the same class. /* CallingMethodsInSameClass.java * * illustrates how to call static methods a class *...
A Hello World! Java program.

A Hello World! Java program.

/* HelloWorld.java */ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } } Source...

Ads by Google