-
Connection Timeout In Java HTTPClient, RestTemplate and URLConnection
Connection timeout is the time for which an HTTP client or Socket client waits, if the server doesn’t respond in that time or not found then the client closes the connection. HTTP also uses sockets internally. Connection timeout is different from the Connection Request timeout or connection read timeout. In many situations, the client doesn’t…
-
Best Libraries for Working with CSV in Java
-
Office Lens PDF Scanner Mobile App for Online Classes
Office Lens is free to use the Mobile app for Android and Ios devices. Which is very handy in scanning documents, whiteboards, pictures, and cards. This can be download from Microsoft Office Lens – PDF Scanner Play Store and Microsoft Office Lens|PDF Scan Apple store. Microsoft is known for its user-friendly products, Nowadays most of…
-
SpotBugs Static Analysis Tool For Java Developers
SpotBugs is a software tool for static analysis of Java programs, which is free to download, use, open-source and can be used in various ways. It can be installed as Eclipse Plugin, configured with Maven build as plugin and Gradle builds as a plugin. It is very handy while being used as an Eclipse plugin…
-
Best Way to Keep Java Code Clean and Organized Using Eclipse
-
Merge Two list in Java in Efficient Way
-
Best way to remove duplicate items from ArrayList in Java
Removing duplicate items from ArrayList in Java can be done in some very efficient ways using Java 8 or Guava lib for Java. Guava lib provides many efficient util classes to perform different operations on collections like creating, sorting, reversing, partitioning, etc. Removing duplicate using Guava API Here is the most efficient way to remove…
-
Create, Partition and Reverse Array List Using Guava Lists
Guava Lists is part of the Guava core java library. It is used to perform many frequently used operations on an array lists like creation, partition, reversal, and many more. Java Guava lib is collection of very safe and handy libs for working with collection types (such as list, multimap, bimap, and multiset), immutable collections,…
