Skip to content

Java Vogue

Java Tutorials

  • All Tutorials
  • Java
  • Java8
  • Spring Boot
  • Microservices
  • Spring
  • Hibernate
  • Reactjs
  • Interview Question
  • Contact

Author: javavogue

December 2, 2015 javavogue

How to convert Byte array to String in Java

In our application sometime there is need of byte array. We can use byte array for encryption purpose . We

Continue reading
December 2, 2015 javavogue

How to check the given number is binary number or not -Java Program

In mathematics and digital electronics, a binary number is a number expressed in the binary numeral system or base-2 numeral

Continue reading
December 1, 2015 javavogue

How to convert binary to decimal number – Java Program

In this example we will convert binary to decimal using  java. We will use this logic 11 ==>>  1*2^1+1*2^0  

Continue reading
November 30, 2015 javavogue

Method Overriding Example – Java Program

package com.javaproficiency; class Y { void display(){ System.out.println(” Y is called”); } } public class X extends Y{ void display(){

Continue reading
November 30, 2015 javavogue

How to Find Common Element In Two arrays – java program

package com.javaproficiency; public class CommonElementOfTwoArray { public static void main(String[] args) { int []arr = {10,15,20,25,40}; int []brr ={5,18,20,25,30,10}; for(

Continue reading
November 29, 2015 javavogue

Top 100+ Java coding interview questions

Cracking the coding interview is easy if you prepared it with right path.To become a developer you have to face

Continue reading
November 26, 2015 javavogue

Count occurrences of Character in String in Java

In this program we will count occurrences of character in string . We will give input a character and string

Continue reading
November 26, 2015 javavogue

Java Program to Print 1 To 10 Without Using Loop

In this article we will write a program to print 1 to 10 without loop in java. We can print

Continue reading
November 26, 2015 javavogue

How to Sort the String using string Method In java

Java have a lot of method for string operations. We can sort a string by convert in to array of

Continue reading
November 25, 2015 javavogue

Object Cloning in java example?

package com.javavogue; public class Emp implements Cloneable { //Object Cloning in java example? int id; String name; public Emp(int id,

Continue reading

Posts navigation

«Previous Posts 1 … 3 4 5 6 7 … 35 Next Posts»

Recent Posts

  • Java Program to display student details Using Class and Object
  • TreeMap floorEntry() method in Java
  • Check If Int is Null In Java
  • Java Math min() method example
  • TreeMap ceilingKey() method in Java

Popular Posts

  • How to Read value From application.properties in spring boot
  • ‘Field required a bean of type that could not be found.’ error spring restful API
  • How to Reload Changes Without Restarting the Server – Spring Boot
  • No converter found for return value of type: org.springframework.http.converter.HttpMessageNotWritableException: No converter found
  • Spring Boot @ConfigurationProperties Property Validation
hi