In Java int to String conversion can be done in a different ways and converted String can be in different formats. In this post we’ll show on examples how to convert them.
Continue reading Java int to StringJava
In Java String to int conversion can be done in a few different ways. In this post we’ll show them and describe differences.
Continue reading Java String to intJava 8 reduce is a great method to compute a value from stream of values – reduce collection to value. In this post we’ll explain how reduce in Java work.
Continue reading Java 8 reduce by exampleJava XML validate using SchemaFactory There are a few ways to validate XML file in Java. In this post we show how to use SchemaFactory to validate XML against XSD Schema from file.
Continue reading Java XML validate using SchemaFactoryGroovy for Java Developers – essentials In this tutorial you will learn the most common features of Groovy that will allow you to get up and running in just a few minutes!
Continue reading Groovy for Java DevelopersJava read XML using DOM Java DOM API is comfortable to work with not big XML documents. They can be easily loaded and modified in runtime. In this post we show how to do it.
Continue reading Java read XML using DOMJava create XML using DOM Java allows to work with XML in many different ways. In this post we show how to use Java DOM API to create a document and write it as XML file.
Continue reading Java create XML using DOMJava CyclicBarrier is very convenient synchronization tool for writing concurrent simulations. In this post we’ll show how it works and write a game simulation.
Continue reading Java CyclicBarrier – game simulationSLF4J: Class path contains multiple SLF4J bindings error occurs in many projects, especially those having multiple dependencies. Here we the reason and how to deal with it!
Continue reading SLF4J: Class path contains multiple SLF4J bindingsSLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder” is an error that people face very often. Here we show what is the reason and how to fix it!
Continue reading SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder