M11: File Input and Output

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

absolute path

complete details needed to locate a file or folder starting from the root

2
New cards

relative path

details needed to locate a file or folder starting from the current location

3
New cards

System.in

The "standard" input stream, typically the console on command-line programs.

4
New cards

System.out

The "standard" output stream, typically the console on command-line programs.

5
New cards

System.err

The "standard" error output stream, typically also the console on command-line programs, but may be shown in a different color.

6
New cards

format string

The first argument to printf that specifies how to format the output.

7
New cards

format specifier

A special code that begins with a percent sign and specifies the data type and format of the corresponding value.

8
New cards

flushing output

When writing output from a program it may be cached and not completely written to disk until the program flushes or closes the stream. For example to make sure output from PrintWriter is actually written, make sure to close it.

9
New cards

IOException

A type of Run-time error or exception that can occur while performing certain Input or Output operations [checked]

10
New cards

FileNotFoundException

Signals that the attempt to open a file denoted by a specified path name has failed [checked]

11
New cards

file input

data read from a file

12
New cards

file output

data written to a file