Small Applet
[sourcecode=’java’] //import directives import javax.swing.*; public class HelloJava { //main method public static void main( String[] args ) { JFrame frame = new JFrame( “Hello… Read More »Small Applet
[sourcecode=’java’] //import directives import javax.swing.*; public class HelloJava { //main method public static void main( String[] args ) { JFrame frame = new JFrame( “Hello… Read More »Small Applet
Switch is mostly useful while we are making any menu-driven program and we can use switch even for many other purposes. Here I’m going to… Read More »Using Switch
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
public static void main(String[] args) { int binary = 4; int hexadecimal = 43; //Convert the integer to binary. Stored in String. String bin = Integer.toBinaryString(binary); System.out.println(binary + " as binary: " + bin); //Convert the second integer into hex. Stored in String. String hex = Integer.toHexString(hexadecimal); System.out.println(hexadecimal + " as hex: " + hex); //To convert back, parse the String with base 2 (binary). System.out.println(bin + " as integer: " + Integer.parseInt(bin, 2)); //Hexadecimal is base-16, so pass in 16 as base. System.out.println(hex + " as integer: " + Integer.parseInt(hex, 16)); } |
Just paste these java codes in your java file .Compile and Run it . Now u will be able to easily convert the Number… Read More »Converting Number System
Problem: [sourcecode=’java’] import java.util.*; public class Test{ public static void main(String[] args){ ArrayList x = new ArrayList(); x.add(new Student(“Naray”)); x.add(new Student(“Gopal”)); } } [/sourcecode] //in… Read More »Problem at Constructor's Parameter