41 lines
3.0 KiB
Markdown
Raw Normal View History

=========
## Core Java Cookbooks and Examples
### Relevant Articles:
2013-12-26 22:08:32 +02:00
- [Immutable ArrayList in Java](http://www.baeldung.com/java-immutable-list)
- [Java - Reading a Large File Efficiently](http://www.baeldung.com/java-read-lines-large-file)
2014-03-20 21:59:42 +02:00
- [Java InputStream to String](http://www.baeldung.com/convert-input-stream-to-string)
2016-02-08 12:01:25 +02:00
- [Converting between an Array and a List in Java](http://www.baeldung.com/convert-array-to-list-and-list-to-array)
2016-02-08 12:02:58 +02:00
- [Converting between an Array and a Set in Java](http://www.baeldung.com/convert-array-to-set-and-set-to-array)
2016-02-08 12:04:32 +02:00
- [Converting between a List and a Set in Java](http://www.baeldung.com/convert-list-to-set-and-set-to-list)
2016-02-08 12:07:07 +02:00
- [Convert a Map to an Array, List or Set in Java](http://www.baeldung.com/convert-map-values-to-array-list-set)
2016-02-08 12:22:55 +02:00
- [Java Write to File](http://www.baeldung.com/java-write-to-file)
2016-02-08 12:44:18 +02:00
- [Java Scanner](http://www.baeldung.com/java-scanner)
2016-02-09 14:27:46 +02:00
- [Java Timer](http://www.baeldung.com/java-timer-and-timertask)
2016-10-04 14:56:26 +06:00
- [Java Byte Array to Writer](http://www.baeldung.com/java-convert-byte-array-to-writer)
- [How to Run a Shell Command in Java](http://www.baeldung.com/run-shell-command-in-java)
2016-10-04 15:28:03 +06:00
- [MD5 Hashing in Java](http://www.baeldung.com/java-md5)
- [Guide to the Java ArrayList](http://www.baeldung.com/java-arraylist)
- [Guide to Java Reflection](http://www.baeldung.com/java-reflection)
2016-10-23 11:25:09 +02:00
- [A Guide to Java Sockets](http://www.baeldung.com/a-guide-to-java-sockets)
2016-10-23 19:49:03 +02:00
- [Java 8 Collectors](http://www.baeldung.com/java-8-collectors)
2016-10-23 19:53:01 +02:00
- [Guide To CompletableFuture](http://www.baeldung.com/java-completablefuture)
2016-10-23 19:55:41 +02:00
- [Guide to Java 8s Functional Interfaces](http://www.baeldung.com/java-8-functional-interfaces)
2016-10-23 21:22:07 +02:00
- [Convert char to String in Java](http://www.baeldung.com/java-convert-char-to-string)
2016-10-23 21:24:20 +02:00
- [Random List Element](http://www.baeldung.com/java-random-list-element)
2016-10-23 22:36:44 +02:00
- [Convert String to int or Integer in Java](http://www.baeldung.com/java-convert-string-to-int-or-integer)
- [Java 8 Powerful Comparison with Lambdas](http://www.baeldung.com/java-8-sort-lambda)
- [Java Directory Size](http://www.baeldung.com/java-folder-size)
- [Java Try with Resources](http://www.baeldung.com/java-try-with-resources)
- [A Guide to the Java ExecutorService](http://www.baeldung.com/java-executor-service-tutorial)
- [Java 8 New Features](http://www.baeldung.com/java-8-new-features)
- [Lambda Expressions and Functional Interfaces: Tips and Best Practices](http://www.baeldung.com/java-8-lambda-expressions-tips)
- [The Double Colon Operator in Java 8](http://www.baeldung.com/java-8-double-colon-operator)
- [Java 8 Streams Advanced](http://www.baeldung.com/java-8-streams)
- [Introduction to Thread Pools in Java](http://www.baeldung.com/thread-pool-java-and-guava)
- [Introduction to Java 8 Streams](http://www.baeldung.com/java-8-streams-introduction)
2016-11-10 16:13:42 +01:00
- [Guide to the Fork/Join Framework in Java](http://www.baeldung.com/java-fork-join)
- [How to Print Screen in Java](http://www.baeldung.com/print-screen-in-java)
- [How to Convert String to different data types in Java](http://www.baeldung.com/java-string-conversions)