问题:标题乱码
来源:5-3 登陆与个人中心实现-界面(个人中心)
tataxqy
2019-03-19 15:52:28
老师,为什么标题会乱码呢?

3回答
你好同学,测试了你的代码是没有问题的,出现乱码的原因应该是你ide的字符编码格式不正确,请问同学使用的是idea开发工具吗?如果是,可以按照下图演示操作进行调节。File->Settings然后出现下图界面,祝学习愉快~

tataxqy
提问者
2019-03-19
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <!-- 这是后来添加上去的代码 --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>人员管理系统</title> </head> <frameset rows="85,*" cols="*" frameborder="no" border="0" framespacing="0"> <frame src="top.jsp" name="topFrame" scrolling="no"> <frameset cols="250,*" name="btFrame" frameborder="NO" border="0" framespacing="0"> <frame src="left.jsp" noresize name="menu" scrolling="yes"> <frame src="self/info.do" class="frame_r" noresize name="main" scrolling="yes"> </frameset> </frameset> <noframes> <body>您的浏览器不支持框架!</body> </noframes> </html>
chrismorgen
2019-03-19
你好同学,请问你有没有将页面的编码格式设置为uft-8呢?譬如下图代码设置,祝学习愉快~
