Using Java Remove White Spaces From String In Java Using Built-In Methods? we use replaceAll() method of String class to remove all white spaces (including tab also) from a string. This is one of the easiest method to remove spaces from string in java. replaceAll() method takes two parameters. One is the string to be replaced and another one is the …
Continue reading White Spaces Removal ProgramWhite Spaces Removal Program
Using Java
Remove White Spaces From String In Java Using Built-In Methods?
we use replaceAll() method of String class to remove all white spaces (including tab also) from a string. This is one of the easiest method to remove spaces from string in java. replaceAll() method takes two parameters. One is the string to be replaced and another one is the string to be replaced with. We pass the string “\\s+” to be replaced with an empty string “”
import java.util.Scanner;
public class RemoveWhiteSpaces
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter input string to be cleaned from white spaces...!");
String inputString = sc.nextLine();
String stringWithoutSpaces = inputString.replaceAll("\\s+", "");
System.out.println("Input String : "+inputString);
System.out.println("Input String Without Spaces : "+stringWithoutSpaces);
sc.close();
}
}
Remove White Spaces From String Without Using Built-In Methods?
first we convert the given input string to char array and then we traverse this array to find white spaces. We concatenate the characters which are not the white spaces to String object.
import java.util.Scanner;
public class RemoveWhiteSpaces
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter input string to be cleaned from white spaces...!");
String inputString = sc.nextLine();
char[] charArray = inputString.toCharArray();
String stringWithoutSpaces = "";
for (int i = 0; i < charArray.length; i++)
{
if ( (charArray[i] != ' ') && (charArray[i] != '\t') )
{
stringWithoutSpaces = stringWithoutSpaces + charArray[i];
}
}
System.out.println("Input String : "+inputString);
System.out.println("Input String Without Spaces : "+stringWithoutSpaces);
sc.close();
}
}
Using Java 1) Using StringBuffer class In this method, we use reverse() method of StringBuffer class to reverse the string. Here is the code snippet to reverse the string using reverse() method of StringBuffer class. 2) Using iterative methodIn this method, first we convert given string to char array using charArray() method. And then we …
Continue reading program to reverse a stringannotation @JsonInclude of Jackson library which helps in eliminating default, null, empty, etc values. For this post, we will focus on default values. Suppose we have an Employee POJO as below:- It may not be mandatory to pass values to all fields in a payload. For example, a “gender” field may be optional and you …
Continue reading @JsonInclude Annotation – Ignore Default Values In PayloadClass ObjectMapper This is the most powerful class provided by Jackson API and maximum time we will use this class. ObjectMapper class is useful to create JSON object, JSON Array, converting a Java object to a JSON object and vice versa. In this post, we will use the ObjectMapper class to convert a Java Object …
Continue reading De-Serialization – JSON Object To Java Object Using Jackson APINow we will learn how to create JSON objects using POJOs. To create a JSON object (JSON) from Java Objects( POJOs) is called Serialization. For this, we can use any JSON parser APIs. In this post, we will use Jackosn APIs About Jackson API Jackson API is a high-performance JSON processor for Java. We can …
Continue reading Serialization – Java Object To JSON Object Using Jackson APIExample JSON Payload Creating POJO classes are simple if we identify what are classes we need to create correctly. A final POJO class for a JSON Payload is created by combining multiple blocks. Let’s identify different objects or POJO :- There is no need to create a POJO for a 1:1 fields. We can include …
Continue reading How To Create POJO Classes Of A Nested JSON PayloadSample JSON Array Payload Above JSON Array is a collection of JSON Objects or a List of Employees. We have created a Employee POJO class in previous post and we can reuse the same. That is how reusability is one of the major advantage of POJO classes. Employee POJO We do not need any other …
Continue reading How To Create POJO Classes Of A JSON Array PayloadPOJO classes are extensively used for creating JSON and XML payloads for API. Although there are many online platform to generate POJO and Java libraries to generate POJO classes automatically but still knowing to create POJO helps. Even you can use plain POJO concepts or POJO with builder pattern for data storage as well which …
Continue reading How To Create POJO Classes Of A JSON Object PayloadJava supports Object Oriented Programming System (OOPs) which is a programming paradigm. From the full form of OOPs , we can understand that it is a programming approach which is oriented around something called “Object” and an Object can contain data (Member variables ) and mechanism (member functions) to manipulate on these data. For an …
Continue reading What Is Plain Old Java Object (POJO) ?We have already learnt to create JSON Object using Jackson API If you download and add jackson-databind jar to build path, do not forget to download other two transitive dependencies as well. Class ObjectMapper This is the most powerful class provided by Jackson API and maximum time we will use this class. As of now …
Continue reading How To Create JSON Array Using Jackson API – ObjectMapper – CreateArrayNode()