π How to Calculate βTime Agoβ in Java
https://www.baeldung.com/java-calculate-time-ago
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-calculate-time-ago
β‘οΈ @JavaLearnZone
Baeldung
How to Calculate βTime Agoβ in Java | Baeldung
Explore several solutions for calculating "time ago" in Java.
π Adding Parameters to Java HttpClient Requests
https://www.baeldung.com/java-httpclient-request-parameters
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-httpclient-request-parameters
β‘οΈ @JavaLearnZone
Baeldung
Adding Parameters to Java HttpClient Requests | Baeldung
Different examples of HTTPClient core Java.
π Java βint/char Cannot Be Dereferencedβ Error
https://www.baeldung.com/java-int-char-cannot-be-dereferenced
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-int-char-cannot-be-dereferenced
β‘οΈ @JavaLearnZone
Baeldung
Java βint/char Cannot Be Dereferencedβ Error | Baeldung
Take a closer look at the Java error βint cannot be dereferencedβ, learn the leading cause of the exception, and see how to fix it.
π Java Scanner useDelimiter with Examples
https://www.baeldung.com/java-scanner-usedelimiter
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-scanner-usedelimiter
β‘οΈ @JavaLearnZone
Baeldung
Java Scanner useDelimiter with Examples | Baeldung
Learn how to use the useDelimiter method of the Scanner class.
π Sort a List Alphabetically in Java
https://www.baeldung.com/java-sort-list-alphabetically
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-sort-list-alphabetically
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Sort a List Alphabetically in Java | Baeldung
Learn how to sort elements in Java collections.
π Difference Between parseInt() and valueOf() in Java
https://www.baeldung.com/java-integer-parseint-vs-valueof
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-integer-parseint-vs-valueof
β‘οΈ @JavaLearnZone
Baeldung
Difference Between parseInt() and valueOf() in Java | Baeldung
Learn the differences between the parseInt() and valueOf() methods of the java.lang.Integer class in Java.
π Check if a Number Is Odd or Even
https://www.baeldung.com/java-check-number-parity
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-check-number-parity
β‘οΈ @JavaLearnZone
Baeldung
Check if a Number Is Odd or Even in Java | Baeldung
Learn multiple ways to check the parity of a number in Java.
π How to Convert InputStream to Base64 String
https://www.baeldung.com/java-inputstream-to-base64-string
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-inputstream-to-base64-string
β‘οΈ @JavaLearnZone
Baeldung
How to Convert InputStream to Base64 String | Baeldung
Learn how to use Java Streaming IO functions and the built-in Base64 class to load binary data as an InputStream and then convert it to a String.
π How to Split a Stream into Multiple Streams
https://www.baeldung.com/java-split-stream
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-split-stream
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
How to Split a Stream into Multiple Streams | Baeldung
Sometimes we need to process the elements of a stream in multiple ways. We explore a few options for splitting the stream, or running the stream over several terminal operations.
π Use Cases for Static Methods in Java
https://www.baeldung.com/java-static-methods-use-cases
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-static-methods-use-cases
β‘οΈ @JavaLearnZone
Baeldung
Use Cases for Static Methods in Java | Baeldung
Java allows us to declare functions as static. We look at what this means, how static functions differ from others, and some common use cases for preferring static functions.
π Creating JAR Files Programmatically
https://www.baeldung.com/jar-create-programatically
β‘οΈ @JavaLearnZone
https://www.baeldung.com/jar-create-programatically
β‘οΈ @JavaLearnZone
Baeldung
Creating JAR Files Programmatically | Baeldung
Learn how to create and add files to a JAR programatically.
π Logging Performance Comparison
//www.javacodegeeks.com/2022/07/logging-performance-comparison.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2022/07/logging-performance-comparison.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Logging Performance Comparison - Java Code Geeks - 2023
In a previous blog post, I explained the pros and cons of using logging. In this post, weβll explore and compare the performance of different logging
π Clearing a StringBuilder or StringBuffer
https://www.baeldung.com/java-clear-stringbuilder-stringbuffer
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-clear-stringbuilder-stringbuffer
β‘οΈ @JavaLearnZone
Baeldung
Clearing a StringBuilder or StringBuffer | Baeldung
Learn how to clear a StringBuilder or StringBuffer in Java.