Convert Short Primitive Type to Short Object in Java

karthikeya Boyini
Updated on 26-Jun-2020 10:22:19

608 Views

Let us first create a short primitive type and assign a value.short val = 30;Now, create a Short object and set the above short type to it.Short myShort = new Short(val);The following is the complete example to convert short primitive type to Short object using Short constructor.Example Live Demopublic class Demo {    public static void main(String []args) {       short val = 30;       Short myShort = new Short(val);       System.out.println(myShort);    } }Output30

Convert String to Short Primitive in Java

Samual Sam
Updated on 26-Jun-2020 10:21:58

306 Views

Use the parseShort() method to convert String to short primitive. It parses the string argument as a signed short.Firstly, we have set a string.String str = "99";Now, we have taken a short primitive and included the string value.short val = Short.parseShort(str);The following is an example to convert String to short primitive.Example Live Demopublic class Demo {    public static void main(String []args) {       String str = "99";       short val = Short.parseShort(str);       System.out.println(val);    } }Output99

Principle Behind Wireless Charging

Shanmukh Pasumarthy
Updated on 26-Jun-2020 10:21:33

2K+ Views

In the present world, technology has got very advanced. Most of our daily tasks have been automated which has made us more reliable on electronic gadgets. Wireless Charging gives an advantageous, safe, and solid approach to charge and power a large number of electrical gadgets at home, in the work, and in industries.By removing the use of physical connectors and links, remote charging makes it efficient and brings cost and safety advantages over the conventional charging wire. From cell phones to hand-held mechanical gadgets and heavy duty gear applications, wireless power keeps them protected, constant and maintains the reliable exchange ... Read More

Convert Byte to String in Java

karthikeya Boyini
Updated on 26-Jun-2020 10:21:30

566 Views

In Java, there are different ways to convert byte to string.Using toString() method, you can easily convert byte to string as shown below −Example Live Demopublic class Demo {    public static void main(String[] args) {       byte res = 87;       // byte to string       System.out.println(Byte.toString(res));    } }Output87In the above example, we have taken a byte value.byte res = 87;With that, to convert to string, the method toString() is used as shown below −Byte.toString(res);Let us see another example to convert byte to string.Example Live Demopublic class Demo {    public static void main(String[] ... Read More

Compare Two Byte Arrays in Java

Samual Sam
Updated on 26-Jun-2020 10:21:03

314 Views

To compare two Byte Arrays, use the Arrays.equals() method. Here we have declared and initialized a total of 4 arrays.byte[] arr1 = new byte[] { 11, 13, 30, 45, 77, 89 }; byte[] arr2 = new byte[] { 12, 13, 34, 87, 99, 33}; byte[] arr3 = new byte[] { 11, 13, 30, 45, 77, 89 }; byte[] arr4 = new byte[] { 13, 16, 56, 78, 98, 99 };Now, using the Arrays.equals() method, we will be compare two arrays.Arrays.equals(arr1, arr2);In the same way, other arrays would be compared one by one.Let us see the complete example to compare two ... Read More

Add Auto Increment to Column in MySQL Database using phpMyAdmin

karthikeya Boyini
Updated on 26-Jun-2020 10:21:02

10K+ Views

You can add auto_increment to a column in MySQL database with the help of ALTER command.The syntax is as follows −ALTER TABLE yourTableName MODIFY yourColumnName INT NOT NULL AUTO_INCREMENT;To open PhpMyAdmin on localhost, you need to type the following on localhost and press enter −localhost/phpmyadminThe screenshot is as follows −Above, we already have a table “AutoIncrementDemo”. In that, we have a column “UserId” set as Primary key. Let’s say we need to add auto_increment to the same column.For auto_increment, check the A.I as shown above. The same is marked below as well −After that press the Save button.Let us also ... Read More

Convert Unsigned Byte to Java Type

karthikeya Boyini
Updated on 26-Jun-2020 10:18:09

311 Views

Firstly, let us declare byte values.byte val1 = 127; byte val2 = -128;To convert the above given unsigned byte, you can use the following. Here, we are first implementing it for the variable “val1”.(int) val1 & 0xFFNow for the second variable “val2”.(int) val2 & 0xFFLet us see the complete example to convert an UNSIGNED bye to a JAVA type.Example Live Demoimport java.util.*; public class Demo {    public static void main(String[] args) {       byte val1 = 127;       byte val2 = -128;       System.out.println(val1);       System.out.println((int) val1 & 0xFF);       System.out.println(val2);       System.out.println((int) val2 & 0xFF);    } }Output127 127 -128 128

Convert Byte to Hexadecimal Equivalent in Java

Samual Sam
Updated on 26-Jun-2020 10:16:08

1K+ Views

To convert a byte to hexadecimal equivalent, use the toHexString() method in Java.Firstly, let us take a byte value.byte val1 = (byte)90;Before using the method, let us do some more manipulations. Mask the byte value now:int res = val1 & 0xFF;Let us now see the complete example and use the toHexString() method to convert a byte to hexadecimal equivalent.Example Live Demopublic class Demo {    public static void main(String[] args) {       byte val1 = (byte)90;       System.out.println("Byte = "+val1);       int res = val1 & 0xFF;       System.out.println("Hexadecimal = "+Integer.toHexString(res));    } }OutputByte = 90 Hexadecimal = 5a

Integer LowestOneBit Method in Java

karthikeya Boyini
Updated on 26-Jun-2020 10:15:40

119 Views

The method Integer.lowestOneBit() returns an int value with at most a single one-bit, in the position of the lowest-order ("rightmost") one-bit in the specified int value.Here we have a decimal value 294, whose binary is −100100110The lowest one bit is calculated using the lowestOneBit() method in Java.Example Live Demopublic class Demo {    public static void main(String []args) {       // binary 100100110       int dec = 294;       System.out.println("Count of one bits = " + Integer.bitCount(dec));       System.out.println("Lowest one bit: " + Integer.lowestOneBit(dec));    } }OutputCount of one bits = 4 Lowest one bit: 2

Multiply Integers and Check for Overflow in Java

karthikeya Boyini
Updated on 26-Jun-2020 10:14:54

965 Views

To check for Integer overflow, we need to check the Integer.MAX_VALUE with the multiplied integers result, Here, Integer.MAX_VALUE is the maximum value of an integer in Java.Let us see an example wherein integers are multiplied and if the result is more than the Integer.MAX_VALUE, then an exception is thrown.The following is an example showing how to check for Integer overflow.Example Live Demopublic class Demo {    public static void main(String[] args) {       int val1 = 9898;       int val2 = 6784;       System.out.println("Value1: "+val1);       System.out.println("Value2: "+val2);       long mul ... Read More

Advertisements