要解決Tomcat啟動(dòng)框中文亂碼的問(wèn)題,可以嘗試以下幾種方法:
export JAVA_OPTS="-Dfile.encoding=UTF-8"
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
URIEncoding="UTF-8" />
java.util.logging.ConsoleHandler.encoding = UTF-8
通過(guò)以上方法,應(yīng)該能夠解決Tomcat啟動(dòng)框中文亂碼的問(wèn)題。如果問(wèn)題仍然存在,可以嘗試其他方法或者查找相關(guān)文檔進(jìn)行排查。