标签: java encoding utf-8 character-encoding filehandler
我在我的应用程序中使用Java FileHandler来编写日志文件。我需要以Unicode字符输出。所以我在我的应用程序中将编码设置为fileHandler.setEncoding("UTF-8");。但输出中的Unicode字符仍显示为?????。
FileHandler
fileHandler.setEncoding("UTF-8");
?????
我怎么能解决这个问题?