We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
该方法为一次性写入,无论数据长度为多少都没有缓存的必要 因此可以直接使用FileWriter,减少Buffer的开销
FileIOUtils.java Line 542
public static boolean writeFileFromString(final File file, final String content, final boolean append)
The text was updated successfully, but these errors were encountered:
Blankj
Successfully merging a pull request may close this issue.
描述 Bug
该方法为一次性写入,无论数据长度为多少都没有缓存的必要
因此可以直接使用FileWriter,减少Buffer的开销
相关代码
FileIOUtils.java Line 542
The text was updated successfully, but these errors were encountered: