Decode String into Integer in Java

This tutorial will teach you how to create a program that will decode a string into integer in java. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of decodeNumberSystem.java. 2. We will initialize variables in our Main, variable named decimal,octal,and hexa as String. We have initialized this variable to make this an Integer.
  1.     String decimal = "999"; // Decimal
  2.     String hexa = "0XFD"; // Hexa
  3.     String octal = "067"; // Octal
3. To decode a string, we will use the decode method of the integer data type and put inside the String variables that we have declare above.
  1.     Integer decodeDecimal = Integer.decode(decimal);
  2.     Integer decodeHexa = Integer.decode(hexa);
  3.     Integer decodeOctal = Integer.decode(octal);
A decode method of the integer data type decodes a String. It accepts decimal, hexadecimal, and octal numbers. 4. Lastly, display the decoded integer value of the inputted string.
  1.     System.out.println("Decoded String [" + decimal + "] = " + decodeDecimal);
  2.     System.out.println("Decoded String [" + hexa + "] = " + decodeHexa);
  3.     System.out.println("Decoded String [" + octal + "] = " + decodeOctal);
Output: output Here's the full code of this tutorial:
  1. public class decodeNumberSystem {
  2.   public static void main(String[] args) {
  3.     String decimal = "999"; // Decimal
  4.     String hexa = "0XFD"; // Hexa
  5.     String octal = "067"; // Octal
  6.  
  7.    
  8.     Integer decodeDecimal = Integer.decode(decimal);
  9.     Integer decodeHexa = Integer.decode(hexa);
  10.     Integer decodeOctal = Integer.decode(octal);
  11.    
  12.    
  13.     System.out.println("Decoded String [" + decimal + "] = " + decodeDecimal);
  14.     System.out.println("Decoded String [" + hexa + "] = " + decodeHexa);
  15.     System.out.println("Decoded String [" + octal + "] = " + decodeOctal);
  16.   }
  17. }
  18.    
For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards, Engr. Lyndon Bermoy IT Instructor/System Developer/Android Developer/Freelance Programmer Mobile: 09488225971 Landline: 826-9296 E-mail:[email protected] Add and Follow me on Facebook: https://www.facebook.com/donzzsky Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

Add new comment