Course:: Easy-To-Follow Java Programming
Course:: Easy-To-Follow Java Programming
All files contain [ …….......... ] that are binary data for [ …….......... ] bits (i.e. binary
digits). You can [ …….......... ] the content of a file as [ …….......... ] if you use a code
table for translating between the two. Such code tables are e.g. ASCII, Unicode,
UTF-8… Every character can be represented by [ …….......... ] characters.
Input Output
Bytes
Characters
…good for handling closable resources so that they will be closed either
there is an exception or not.
…an improved try-catch structure in which you can add an auxilliary object
which defines how to handle the exception.
5. What is a DAO?
The answers
All files contain [ bytes ] that are binary data for [ 8 ] bits (i.e. binary digits). You can
[ interpret ] the content of a file as [ characters ] if you use a code table for
translating between the two. Such code tables are e.g. ASCII, Unicode, UTF-8…
Every character can be represented by [ 1 or more ] characters.
Input Output
Bytes …InputStream …OutputStream
Characters …Reader …Writer
…an improved try-catch structure in which you can add an auxilliary object
which defines how to handle the exception.
4. Pattern is…