
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 33676 Articles for Programming

399 Views
Floating-point conversion characters include the following.CharacterDescription%edecimal number in computerized scientific notation%Edecimal number in computerized scientific notation%fdecimal number%gbased on computerized scientific notation or decimal format, %Gbased on computerized scientific notation or decimal format, Example Live Demopublic class Demo { public static void main(String[] args) throws Exception { System.out.printf("Integer conversions..."); System.out.printf( "Integer: %d", 889 ); System.out.printf( "Negative Integer: %d", -78 ); System.out.printf( "Octal: %o", 677 ); System.out.printf( "Hexadecimal: %x", 56 ); System.out.printf( "Hexadecimal: %X", 99 ); System.out.printf("Floating-point conversions..."); ... Read More

155 Views
Intergral conversion characters include the following.CharacterDescription%dInteger%oOctal%xHexadecimal%XHexadecimalExample Live Demopublic class Demo { public static void main(String[] args) throws Exception { System.out.printf( "Integer: %d", 889 ); System.out.printf( "Negative Integer: %d", -78 ); System.out.printf( "Octal: %o", 677 ); System.out.printf( "Hexadecimal: %x", 56 ); System.out.printf( "Hexadecimal: %X", 99 ); } }OutputInteger: 889 Negative Integer: -78 Octal: 1245 Hexadecimal: 38 Hexadecimal: 63

517 Views
Use the ‘c’ date conversion character to display UNIX date format in Java.System.out.printf("Unix date format: %tc",d);Above, d is a date object.Date d = new Date();Example Live Demoimport java.util.Date; import java.text.DateFormat; import java.text.SimpleDateFormat; public class Demo { public static void main(String[] args) throws Exception { Date d = new Date(); System.out.printf("Unix date format: %tc",d); System.out.printf("Unix date format: %Tc",d); } }OutputUnix date format: Mon Nov 26 12:24:10 UTC 2018 Unix date format: MON NOV 26 12:24:10 UTC 2018

851 Views
Use the ‘F’ date conversion character to display ISO 8601 standard date.System.out.printf("ISO 8601 standard date = %tF", d);Above, d is a date object.Date d = new Date();Example Live Demoimport java.util.Date; import java.text.DateFormat; import java.text.SimpleDateFormat; public class Demo { public static void main(String[] args) throws Exception { Date d = new Date(); System.out.printf("Four-digit Year = %TY",d); System.out.printf("Two-digit Year = %ty",d); System.out.printf("ISO 8601 standard date = %tF", d); } }OutputFour-digit Year = 2018 Two-digit Year = 18 ISO 8601 standard date = 2018-11-26

1K+ Views
Let’s say we have the following string.String str = "Demo Text!";To copy some part of the above string, use the getChars() method.// copy characters from string into chArray =str.getChars( 0, 5, chArray, 0 );The following is an example to copy characters from string into char Array in Java.Example Live Demopublic class Demo { public static void main(String[] args) { String str = "Demo Text!"; char chArray[] = new char[ 5 ]; System.out.println("String: "+str); // copy characters from string into chArray str.getChars( 0, 5, chArray, 0 ... Read More

360 Views
To create a character array from a string object, we convert each character of the string into elements of an array of type char. This is useful when we need to manipulate or access individual characters within the string. String Object: A string object is an instance of the String class representing a sequence of characters. It is immutable, which means once it is created, its value cannot be changed. Character Array: A character array is a data structure in Java that stores a sequence of characters. Creating Character Arrays from ... Read More

361 Views
To get the characters in a string as an array of bytes, use the getBytes() method.Let’s say we have the following string.String str = "Demo Text!";Convert it to array of bytes.byte[] arr = str.getBytes();Example Live Demopublic class Demo { public static void main(String[] args) { String str = "Demo Text!"; // getting as an array of bytes byte[] arr = str.getBytes(); // displaying each character as a Byte value for(byte res: arr) { System.out.println(res); } } }Output68 101 109 111 32 84 101 120 116 33

1K+ Views
In Java, converting a byte array to a string means transforming the raw binary data (byte array) into a human-readable text format (String). To convert a byte array to a string, we can use the String constructor and a specified character encoding, such as UTF-8. Byte Array: A byte array is a sequence of bytes, each byte being an 8-bit value. String: A string is a sequence of characters, representing text. Converting a Byte array to a String in Java is quite easy. Let us learn the following methods: ... Read More

712 Views
The Integer.toOctalString() method in Java converts int to octal string.Let’s say the following are our integer values.int val1 = 9; int val2 = 20; int val3 = 2;Convert the above int values to octal string.Integer.toOctalString(val1); Integer.toOctalString(val2); Integer.toOctalString(val3);Example Live Demopublic class Demo { public static void main(String[] args) { int val1 = 9; int val2 = 20; int val3 = 30; int val4 = 78; int val5 = 2; System.out.println("Converting integer "+val1+" to Octal String: "+Integer.toOctalString(val1)); System.out.println("Converting ... Read More

5K+ Views
The Integer.toBinaryString() method in Java converts int to binary string.Let’s say the following are our integer values.int val1 = 9; int val2 = 20; int val3 = 2;Convert the above int values to binary string.Integer.toBinaryString(val1); Integer.toBinaryString(val2); Integer.toBinaryString(val3);Example Live Demopublic class Demo { public static void main(String[] args) { int val1 = 9; int val2 = 20; int val3 = 30; int val4 = 78; int val5 = 2; System.out.println("Converting integer "+val1+" to Binary String: "+Integer.toBinaryString(val1)); System.out.println("Converting integer "+val2+" to ... Read More