本文整理了Java中cn.hutool.core.io.FileUtil.readLines()
方法的一些代码示例,展示了FileUtil.readLines()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.readLines()
方法的具体详情如下:
包路径:cn.hutool.core.io.FileUtil
类名称:FileUtil
方法名:readLines
[英]从文件中读取每一行数据
[中]从文件中读取每一行数据
代码示例来源:origin: looly/hutool
/**
* 按行处理文件内容,编码为UTF-8
*
* @param file 文件
* @param lineHandler {@link LineHandler}行处理器
* @throws IORuntimeException IO异常
*/
public static void readUtf8Lines(File file, LineHandler lineHandler) throws IORuntimeException {
readLines(file, CharsetUtil.CHARSET_UTF_8, lineHandler);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据,编码为UTF-8
*
* @param <T> 集合类型
* @param url 文件的URL
* @param collection 集合
* @return 文件中的每行内容的集合
* @throws IORuntimeException IO异常
*/
public static <T extends Collection<String>> T readUtf8Lines(URL url, T collection) throws IORuntimeException {
return readLines(url, CharsetUtil.CHARSET_UTF_8, collection);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据,编码为UTF-8
*
* @param path 文件路径
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
* @since 3.1.1
*/
public static List<String> readUtf8Lines(String path) throws IORuntimeException {
return readLines(path, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param file 文件
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
* @since 3.1.1
*/
public static List<String> readUtf8Lines(File file) throws IORuntimeException {
return readLines(file, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据,编码为UTF-8
*
* @param <T> 集合类型
* @param url 文件的URL
* @param collection 集合
* @return 文件中的每行内容的集合
* @throws IORuntimeException IO异常
*/
public static <T extends Collection<String>> T readUtf8Lines(URL url, T collection) throws IORuntimeException {
return readLines(url, CharsetUtil.CHARSET_UTF_8, collection);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param url 文件的URL
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readUtf8Lines(URL url) throws IORuntimeException {
return readLines(url, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param file 文件
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
* @since 3.1.1
*/
public static List<String> readUtf8Lines(File file) throws IORuntimeException {
return readLines(file, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param url 文件的URL
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readUtf8Lines(URL url) throws IORuntimeException {
return readLines(url, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据,编码为UTF-8
*
* @param path 文件路径
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
* @since 3.1.1
*/
public static List<String> readUtf8Lines(String path) throws IORuntimeException {
return readLines(path, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param path 文件路径
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
* @since 3.1.1
*/
public static List<String> readLines(String path, Charset charset) throws IORuntimeException {
return readLines(path, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param path 文件路径
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(String path, String charset) throws IORuntimeException {
return readLines(path, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param url 文件的URL
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(URL url, String charset) throws IORuntimeException {
return readLines(url, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param path 文件路径
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(String path, String charset) throws IORuntimeException {
return readLines(path, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param file 文件
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(File file, String charset) throws IORuntimeException {
return readLines(file, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param url 文件的URL
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(URL url, String charset) throws IORuntimeException {
return readLines(url, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param path 文件路径
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
* @since 3.1.1
*/
public static List<String> readLines(String path, Charset charset) throws IORuntimeException {
return readLines(path, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param url 文件的URL
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(URL url, Charset charset) throws IORuntimeException {
return readLines(url, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param url 文件的URL
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(URL url, Charset charset) throws IORuntimeException {
return readLines(url, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param file 文件
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(File file, String charset) throws IORuntimeException {
return readLines(file, charset, new ArrayList<String>());
}
代码示例来源:origin: looly/hutool
/**
* 从文件中读取每一行数据
*
* @param file 文件
* @param charset 字符集
* @return 文件中的每行内容的集合List
* @throws IORuntimeException IO异常
*/
public static List<String> readLines(File file, Charset charset) throws IORuntimeException {
return readLines(file, charset, new ArrayList<String>());
}
内容来源于网络,如有侵权,请联系作者删除!