Console Inputs in Java

Reading from the console is something that most people learn to do in a single line or two of code in most languages. However, Java is not most languages… Consider Python: C++ Java So what is going on with that? System.in So lets start with the System.in. This is the console input stream object, just…

Java IO Streams

Java IO Streams represent either an input source, or an output destination where you are trying to send receive/data. This can be to a console window, reading a file from a disk (or SSD), network communication, etc. Java uses the concept of IO streams, and how to handle them, almost identically between all sources. This…