When performing file i/o, what must one use in order to handle the related exceptions?
Answers
Answered by
4
In general, I/O means Input or Output. Those methods throw the IOException whenever an input or output operation is failed or interpreted. Note that this won't be thrown for reading or writing to memory as Java will be handling it automatically
Similar questions