- Writing to the display in Java uses System.out.println() and System.out.print() to output text.
- Reading from keyboard uses the BufferedReader class along with InputStreamReader to read input as strings. The strings can then be split and converted to int or double as needed.
- Key methods for strings include charAt() to get individual characters, and substring() to extract parts of a string.