Look at a couple of libraries that can help us parse INI files in Java
Also find me here:
Baeldung Author
Ashley Frieze
I've been writing software since I was a kid, and have been doing it professionally since the days of dial-up internet. These days I'm a consultant, helping teams with full stack cloud projects in Java and TypeScript. When I'm not software engineering, I can be found performing as a stand-up comedian, or in musical theater.
Here's what I've written (so far):
Baeldung on Java
- All
- Java (3)
- Testing (2)
- Logging (1)
- Java String (1)
- Java Collections (1)
- Jackson (1)
- JSON (1)
- Docker (1)
- Cloud (1)
- Algorithms (1)
Converting Camel Case and Title Case to Words in Java
Filed under Java String
Learn how to find the words in mixed case strings using regular expressions, and how to convert them into sentences or titles
Guide to the ModelAssert Library for JSON
Learn how to write assertions and comparisons between JSON values using ModelAssert
Writing an Enterprise-Grade AWS Lambda in Java
Learn how to include configuration and logging capabilities in an AWS Lambda, as well as libraries that reduce boilerplate code, while still keeping things lightweight
Guide to Docker Volumes
Filed under Docker
Learn about Docker volumes and how to manage and connect them to containers
Guide to the System Stubs Library
Filed under Testing
Learn the importance of being able to mock system resources and how System Stubs allows for complex configurations of stubbing with JUnit 4 and JUnit 5 plugins
How to Access an Iteration Counter in a For Each Loop
Filed under Java, Java Collections
Java’s for each loop does not provide an iteration counter. There are a few ways we can iterate over both the item and its index.
How to Use Regular Expressions to Replace Tokens in Strings in Java
Filed under Algorithms, Java
Learn some regular expression strategies for replacing tokens in strings
Guide to Java BiFunction Interface
Filed under Java
Learn some common patterns for Java functional interfaces that take two parameters.