折腾:
【未解决】Java中如何保存字符串到文件中且指定编码
期间,在写java函数,希望加上函数默认值:
public static void saveStrToFile(String fullFilePath, String strToSave, Charset strCharset = Charset.forName("UTF-8")) {
报错:
Cannot resolve symbol 'forName'
函数参数默认值
java function default param
【总结】
最后用
public static void saveStrToFile(String fullFilePath, String strToSave) { Logger.debug("saveStrToFile: fullFilePath={}, strToSave={}", fullFilePath, strToSave); saveStrToFile(fullFilePath, strToSave, Charset.forName("UTF-8")); } public static void saveStrToFile(String fullFilePath, String strToSave, Charset strCharset) { Logger.debug("saveStrToFile: fullFilePath={}, strToSave={}, strCharset={}", fullFilePath, strToSave, strCharset); try{ File destFile = new File(fullFilePath); FileUtils.write(destFile, strToSave, strCharset); } catch ( IOException err){ Logger.error("Save file {} error {}", fullFilePath, err); } }
间接实现了需要的 函数默认值的效果。
转载请注明:在路上 » 【间接解决】Java中的函数默认值