
In order to parse a YAML file using Java you will need to make use of the jackson-dataformat-yaml library,
Gradle Jackson YAML Dependency:implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.13.4'
Maven Jackson YAML Dependency:
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.13.4</version>
</dependency>
Example: Parser YAML File using Java Jackson Library
YAML File:name: Alex
age: 21
course: Computers
subjects:
- Java
- Python
- GoLang
- RUST
- React
Student.java POJO Class
import java.util.Arrays;
public class Student {
private String name;
private int age;
private String course;
private String[] subjects;
public Student() {
//Default Constructor
}
public Student(String name, int age, String course, String[] subjects) {
this.name = name;
this.age = age;
this.course = course;
this.subjects = subjects;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getCourse() {
return course;
}
public void setCourse(String course) {
this.course = course;
}
public String[] getSubjects() {
return subjects;
}
public void setSubjects(String[] subjects) {
this.subjects = subjects;
}
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", age=" + age +
", course='" + course + '\'' +
", subjects=" + Arrays.toString(subjects) +
'}';
}
}
JacksonYamlParser.java
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
import java.io.File;
import java.io.IOException;
public class JacksonYamlParser {
public static void main(String[] args) throws IOException {
//Step 1: The YAML FILE
File yamlFile = new File("Student.yaml");
//Step 2: ObjectMapper Class
ObjectMapper objectMapper = new ObjectMapper(new YAMLFactory());
//Step 3: Converting YAML file to Java Object
Student student = objectMapper.readValue(yamlFile, Student.class);
//Step 4: Examples of reading from Java Pojo
System.out.println(student);
System.out.println(student.getName());
System.out.println(student.getAge());
}
}
Output:
Student{name='Alex', age=21, course='Computers', subjects=[Java, Python, GoLang, RUST, React]}
Alex
21
Have Questions? Post them here!
- Create a Zip file using Java Code programmatically
- Eclipse : A java Runtime Environment (JRE) or Java Development kit (JDK) must be available
- How to Sort a LinkedList in Java
- Loading class com.mysql.jdbc.Driver. This is deprecated. The new driver class is com.mysql.cj.jdbc.Driver
- How to declare and initialize Array in Java Programming
- [Fix] java: integer number too large compilation error
- Java JDBC Connection with MySQL Driver in VS Code + Troubleshooting
- Reading .xls and .xlsx Excel file using Apache POI Java Library
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- How to get Client IP address using Java Code Example
- Truncate table using Java JDBC Example
- Struts 2 : There is no Action mapped for namespace [/] and action name [form] associated with context path [/proj]
- How to get file path in Idea IntelliJ IDE
- Java Generics explained with simple definition and examples
- Java SE 8 Update 301 available with various bug fixes and security improvements
- Java: Collect Stream as ArrayList or LinkedList
- Java JDBC Connection with PostgreSQL Driver Example
- How to check if Java main thread is alive
- How to fix Java nio NoSuchFileException wile reading a file
- Java 8+ get Day of the Week Examples with LocalDateTime, DateTime, ZonalDateTime and Instant classes
- Ways to Convert Integer or int to Long in Java
- [Java] How to throws Exception using Functional Interface and Lambda code
- [Fix] Spring Boot: mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
- Java: The value of the local variable string is not used
- Java JDBC: Insert Java 8 LocalDate and Time using PreparedStatement
- Get Button Text onClick Android App - Android
- How to show Machintosh HD icon on Mac Desktop - MacOS
- Find the location of Spotlight searched file - Mac-OS-X
- Quick way to setup AWS DynamoDB locally on macOS - AWS
- 300+ Eclipse IDE Keyboard Shortcuts for Mac - Eclipse
- Drop table using Java JDBC Template - Java
- 2020 Popular Halloween Emoji's and hashtags - Hashtags
- Share image and text Twitter using your Android Application Programatically - Twitter