Pages
-
Recent Posts
Recent Comments
- How to remotely debug Java application | Codepills.com on How to build with Maven without running tests
- Andrej Buday on 3 basic mistakes for NullPointerException when Mock
- ajith on 3 basic mistakes for NullPointerException when Mock
- ajitha on 3 basic mistakes for NullPointerException when Mock
- How to trigger action with Scheduler and Quartz in Camel | Codepills.com on How to download a file from Azure Claud Storage
Archives
- April 2021
- March 2021
- February 2021
- January 2021
- December 2020
- November 2020
- August 2020
- February 2020
- November 2019
- June 2019
- May 2019
- May 2018
- April 2018
- August 2017
- June 2017
- May 2017
- December 2016
- November 2016
- March 2016
- January 2016
- December 2015
- January 2014
- December 2013
- October 2013
- June 2013
- April 2013
- May 2012
- March 2012
- February 2012
- July 2011
- April 2011
- March 2010
- January 2007
- September 2006
Categories
Category Archives: Language basics
How to convert a Map to an Array in Java
This tutorial is about several approaches to converting Java’s Map interface implementations into the Java array. Continue reading
Posted in Language basics
Tagged array, Collection, conversion, HashMap, Java, LinkedHashMap, Map, TreeMap
Leave a comment
How to initialize an array with zero values in Java
This article will look at how to fill up Java array with default values effectively on an array creation. Continue reading
Bit manipulation operators in Java
Java offers a possibility for bit manipulation with bit operators in its code. This article will go through all the operators with real-life examples and explanation. Continue reading
How to show first n characters in JavaScript or TypeScript string
This article will show you three different ways how to obtain substring from a string in JavaScript or TypeScript Continue reading
How to use IntStream range in Java
This article talks about the average use case of loop count variable usage via IntStream API Continue reading
How to loop over HashMap in Java
HashMap is one of the most used data collection. There are several ways how to loop over it and get what you need. We will show five different ways how to loop over HashMap. So what is the best way to … Continue reading
Python String split() Method
From time to time, you will find yourself trying to get a list of things from a string. For this purpose, you can use the split() function.
How to concatenate or append strings in Python
If you are looking for answer how to append strings in Python, you are on the right page.