Programming

Использование переменных и констант в Go — step-by-step Programming tutorial on Progressive Robot

Использование переменных и констант в Go

Переменные — это важная концепция программирования, которую необходимо освоить. Это символы, обозначающие определенные значения, используемые в программе. В этом обучающем руководстве мы расскажем об основах работы с переменными и лучших практиках их использования в создаваемых вами…

Read more
How To Write Comments in Go — step-by-step Programming tutorial on Progressive Robot

How To Write Comments in Go

Almost all programming languages have a syntax for adding comments to code, and Go is no exception. Comments are ignored by the compiler, but they add invaluable context that helps your collaborators—and your future self—to avoid pitfalls and write more maintainable code.

Read more
Jackson JSON Java Parser API Example Tutorial — step-by-step Programming tutorial on Progressive Robot

Jackson JSON Java Parser API Example Tutorial

URL: https://www.progressiverobot.com/jackson-json-java-parser-api-example-tutorial/ Jackson JSON Java Parser is very popular and used in Spring framework too. [Java JSON Processing API](/community/tutorials/java-json-example "Java JSON Processing API Example Tutorial") is not very user friendly and doesn't provide features for automatic transformation from Json to Java object and vice versa. Luckily we have some alternative APIs that we can use […]

Read more
Java append to file — step-by-step Programming tutorial on Progressive Robot

Java append to file

URL: https://www.progressiverobot.com/java-append-to-file/ Today we will look into how to append to a file in java. Java append to file is a common [java IO](/community/tutorials/java-io-tutorial) operation. For example, whenever we print something to server logs, it gets appended to the existing file. Java append to file We can append to file in java using following classes. […]

Read more
Java Convert String to XML Document and XML Document to String — step-by-step Programming tutorial on Progressive Robot

Java Convert String to XML Document and XML Document to String

URL: https://www.progressiverobot.com/java-convert-string-to-xml-document-and-xml-document-to-string/ Sometimes while programming in java, we get String which is actually an XML and to process it, we need to convert it to XML Document (org.w3c.dom.Document). Also for debugging purpose or to send to some other function, we might need to convert Document object to String. Here I am providing two utility functions. […]

Read more
Java LinkedList - LinkedList In Java — step-by-step Programming tutorial on Progressive Robot

Java LinkedList – LinkedList In Java

URL: https://www.progressiverobot.com/java-linkedlist-linkedlist-java/ Java LinkedList is an implementation of the List and Deque interfaces. It is one of the frequently used List implementation class. It extends AbstractSequentialList and implements List and Deque interfaces. It is an ordered collection and supports duplicate elements. It stores elements in Insertion order. It supports adding null elements. It supports index […]

Read more
How to Sort a List in Java — step-by-step Programming tutorial on Progressive Robot

How to Sort a List in Java

URL: https://www.progressiverobot.com/java-sort-list/ Sometimes we have to sort a list in Java before processing its elements. In this tutorial, we will learn how to sort a list in the natural order. We will also learn how to use our own Comparator implementation to sort a list of objects. Java List is similar to arrays except that […]

Read more
CHAT