爬虫抓的小说,存电脑用的。
/**
* 向一个文本中写入字符,可以规定每行字数
* @param file 目标文件.
* @param string 要写入的字符串
* @param quantity 每行想要写入的字数
* @param append 是否覆盖原来文件
* @throws IOException
*/
public static void writeExpectQuantityCharPerLine2File(File file,String string,int quantity,boolean append) throws IOException {
FileWriter fw = new FileWriter(file,append);
BufferedWriter bw = new BufferedWriter(fw);
//根据字符串长度,每行字数,计算要写多少行,进行循环
for (int i = 0; i < (string.length() + quantity) / quantity; i++) {
//最后一行可能写不满,加个判断,其余行都写满
if (i == (string.length() + quantity) / quantity - 1) {
bw.write(string, quantity * i, string.length() % quantity);
bw.newLine();
bw.newLine();
bw.flush();
//fw.flush();
} else {
bw.write(string, quantity * i, quantity);
bw.newLine();
bw.newLine();
bw.flush();
//fw.flush();
}
}
fw.close();
bw.close();
}
爬虫小说存储优化
本文介绍了一种将爬取的小说内容存储到本地文件的方法,通过控制每行字符数量提高阅读体验,避免了长行文字带来的阅读障碍。
2852

被折叠的 条评论
为什么被折叠?



