在Java中,可以使用InputStream
和File
类来读取输入流和文件内容。
InputStream
类的read()
方法可以逐字节地从输入流中读取内容。通常情况下,可以使用BufferedReader
类来包装InputStreamReader
以提高性能。InputStream inputStream = System.in;
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
String line = reader.readLine();
System.out.println("Input: " + line);
File
类表示文件,并使用FileInputStream
类来读取文件内容。同样,可以使用BufferedReader
类来包装InputStreamReader
以提高性能。File file = new File("path/to/file.txt");
InputStream inputStream = new FileInputStream(file);
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
String line;
while ((line = reader.readLine()) != null) {
System.out.println("Line: " + line);
}
注意:在使用File
类读取文件内容时需要处理FileNotFoundException
异常,在使用InputStream
读取输入流时需要处理IOException
异常。