本文整理了Java中cn.hutool.core.io.FileUtil.appendLines()
方法的一些代码示例,展示了FileUtil.appendLines()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.appendLines()
方法的具体详情如下:
包路径:cn.hutool.core.io.FileUtil
类名称:FileUtil
方法名:appendLines
[英]将列表写入文件,追加模式
[中]将列表写入文件,追加模式
代码示例来源:origin: looly/hutool
/**
* 将列表写入文件,追加模式
*
* @param <T> 集合元素类型
* @param list 列表
* @param file 文件
* @return 目标文件
* @throws IORuntimeException IO异常
* @since 3.1.2
*/
public static <T> File appendUtf8Lines(Collection<T> list, File file) throws IORuntimeException {
return appendLines(list, file, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 将列表写入文件,追加模式
*
* @param <T> 集合元素类型
* @param list 列表
* @param file 文件
* @return 目标文件
* @throws IORuntimeException IO异常
* @since 3.1.2
*/
public static <T> File appendUtf8Lines(Collection<T> list, File file) throws IORuntimeException {
return appendLines(list, file, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 将列表写入文件,追加模式
*
* @param <T> 集合元素类型
* @param list 列表
* @param path 文件路径
* @return 目标文件
* @throws IORuntimeException IO异常
* @since 3.1.2
*/
public static <T> File appendUtf8Lines(Collection<T> list, String path) throws IORuntimeException {
return appendLines(list, path, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: looly/hutool
/**
* 将列表写入文件,追加模式
*
* @param <T> 集合元素类型
* @param list 列表
* @param path 文件路径
* @return 目标文件
* @throws IORuntimeException IO异常
* @since 3.1.2
*/
public static <T> File appendUtf8Lines(Collection<T> list, String path) throws IORuntimeException {
return appendLines(list, path, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: cn.hutool/hutool-all
/**
* 将列表写入文件,追加模式
*
* @param <T> 集合元素类型
* @param list 列表
* @param file 文件
* @return 目标文件
* @throws IORuntimeException IO异常
* @since 3.1.2
*/
public static <T> File appendUtf8Lines(Collection<T> list, File file) throws IORuntimeException {
return appendLines(list, file, CharsetUtil.CHARSET_UTF_8);
}
代码示例来源:origin: cn.hutool/hutool-all
/**
* 将列表写入文件,追加模式
*
* @param <T> 集合元素类型
* @param list 列表
* @param path 文件路径
* @return 目标文件
* @throws IORuntimeException IO异常
* @since 3.1.2
*/
public static <T> File appendUtf8Lines(Collection<T> list, String path) throws IORuntimeException {
return appendLines(list, path, CharsetUtil.CHARSET_UTF_8);
}
内容来源于网络,如有侵权,请联系作者删除!