这要根据你的文件格式来决定了,如果是文本文件推荐使用FileReader,如果是字节文件,使用FileInputStream。下面是官方API的解释:
FileReader is meant for reading streams of characters. For reading streams of raw bytes, consider using a FileInputStream
这要根据你的文件格式来决定了,如果是文本文件推荐使用FileReader,如果是字节文件,使用FileInputStream。下面是官方API的解释:
FileReader is meant for reading streams of characters. For reading streams of raw bytes, consider using a FileInputStream
这要根据你的文件格式来决定了,如果是文本文件推荐使用FileReader,如果是字节文件,使用FileInputStream。下面是官方API的解释:
FileReader is meant for reading streams of characters. For reading streams of raw bytes, consider using a FileInputStream
#3
字符流用FileReader
字节流用FileInputStream
public class FileReader
extends InputStreamReader
用来读取字符文件的便捷类。此类的构造方法假定默认字符编码和默认字节缓冲区大小都是适当的。要自己指定这些值,可以先在 FileInputStream 上构造一个 InputStreamReader。
FileReader 用于读取字符流。要读取原始字节流,请考虑使用 FileInputStream
那一般你们处理日志文件里的数据处理是用FileReader 还是FileInputStream
#4
这要根据你的文件格式来决定了,如果是文本文件推荐使用FileReader,如果是字节文件,使用FileInputStream。下面是官方API的解释:
FileReader is meant for reading streams of characters. For reading streams of raw bytes, consider using a FileInputStream
那一般你们处理日志文件里的数据处理是用FileReader 还是FileInputStream
#5
字符流还是字节流就要看你的是什么文件了!
#6
字符流还是字节流就要看你的是什么文件了!
就是一般的日志文件啊 对apache的记录的日志进行处理啊
#7
字符流用FileReader
字节流用FileInputStream
public class FileReader
extends InputStreamReader
用来读取字符文件的便捷类。此类的构造方法假定默认字符编码和默认字节缓冲区大小都是适当的。要自己指定这些值,可以先在 FileInputStream 上构造一个 InputStreamReader。
这要根据你的文件格式来决定了,如果是文本文件推荐使用FileReader,如果是字节文件,使用FileInputStream。下面是官方API的解释:
FileReader is meant for reading streams of characters. For reading streams of raw bytes, consider using a FileInputStream