-
Java ExecutorService examples
In Java, we can use ExecutorService to create a thread pool, and tracks the progress of the asynchronous tasks with Future.
Date: 2019-08-11 View: 1380
-
Java Sequence Generator examples
An example to show you how to create a thread safe sequence generator.
Date: 2019-08-11 View: 1482
-
Java Semaphore examples
In Java, we can use Semaphore to limit the number of threads to access a certain resource.
Date: 2019-08-11 View: 1486
-
Java – Check if a String contains a substring
In Java, we can use String.contains() to check if a String contains a substring.
Date: 2019-08-11 View: 1266
-
Java BlockingQueue examples
In Java, we can use BlockingQueue to create a queue which shared by both producer and the consumer.
Date: 2019-08-11 View: 1247
-
Git pull refusing to merge unrelated histories
Add --allow-unrelated-histories to solve the Git fatal error – “refusing to merge unrelated histories”
Date: 2019-08-11 View: 1224
-
Python How to read a file into a list?
Python example to read a log file, line by line into a list.
Date: 2019-08-11 View: 1162
-
Java How to read a file into a list?
In Java, there are few ways to read a file line by line into a List
Date: 2019-08-11 View: 1435
-
Java Files.walk examples
The Files.walk API is available in Java 8, it is recommended to use try-with-resources to close the Files.walk stream.
Date: 2019-08-11 View: 1352
-
Java ProcessBuilder examples
In Java, we can use ProcessBuilder to call external commands easily :
Date: 2019-08-11 View: 1801
-
Python How to list all files in a directory?
In Python, we can use os.walker or glob to create a find() like function to search or list files or folders in a specified directory and also it’s subdirectories.
Date: 2019-08-11 View: 1465
-
Java How to list all files in a directory?
Two Java examples to show you how to list files in a directory :
Date: 2019-08-11 View: 1255
-
Java How to run Windows bat file
In Java, we can use ProcessBuilder to run a Windows batch file like this :
Date: 2019-08-11 View: 1418
-
Spring WebFlux Test Timeout on blocking read for 5000 MILLISECONDS
Test a Spring Webflux endpoint with the WebTestClient, and hits the following error messages. Is this possible to increase the timeout?
Date: 2019-08-11 View: 5385
-
Java ArrayIndexOutOfBoundsException example
This java.lang.ArrayIndexOutOfBoundsException is thrown when we are accessing an array with an index which is greater than the size of an array.
Date: 2019-08-11 View: 1491