Tuesday, 27 January 2015

Program for Shifting characters in a String eg. String "abcde" should be printed as "eabcd"



import java.util.Scanner;

public class SB
{
public static void main(String []args) {

Scanner in = new Scanner(System.in);

         System.out.println("Enter a string to shift characters");
      String  test = in.nextLine();


 For further visit    Javainhouse
Read More »

Saturday, 24 January 2015

Find length of String without using any length or size method

import java.util.Scanner; public class SB { public static void main(String[] args) { { String test;       Scanner in = new Scanner(System.in);      For further program please visit my new blog http://javainhouse.blogspot.com ...
Read More »

Print "welcome bangalore" as welcome erolagnab

import java.util.Scanner;


public class SB

{

public static void main(String[] args) {

{
String test="welcome bangalore";

String reverse="";


 int i=0;

 String a[]=test.split(" ");


 for (int j = a[1].length()-1; j >= 0; j--)
 {

reverse = reverse + a[1].charAt(j);
 }


 a[1]=reverse;
 test=a[0] +" "+ a[1];
 System.out.println(test);



}
}
}











Read More »

Thursday, 22 January 2015

Program in java to check whether a String is palindrome or not

import java.util.*; public class Palindrome {    public static void main(String args[])    {       String original, reverse = "";       Scanner in = new Scanner(System.in);   Program in java to check whether a String...
Read More »

Program to split a String without using split() method

Program to split a String without using split() method import java.util.*; public class SplitString { public static void main(String[] args) {    String[] s = {"Netherlands_Iceland_Norway_Denmark"};    String[] finalString = mymethod(s);        ...
Read More »

Monday, 19 January 2015

Introduction to JAXB and its Architecture

JAXB means JAVA API for XML Binding. Introduction to JAXB and its Architecture In simple words, it means an API used to bind XML with JAVA objects. JAXB provides an efficient and easy way to bind...
Read More »