为什么姓名输的汉字地址栏却是这样

来源:3-6 get与post提交方式的区别

如初654

2019-03-29 19:44

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<%

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 

%>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

   <h1>用户登录</h1>

   <hr>

   <form action="dologin.jsp" name="loginForm" method="get">

    <table>

      <tr>

        <td>用户名:</td>

        <td><input type="text" name="username"/></td>

      </tr>

      <tr>

        <td>密码:</td>

        <td><input type="password" name="password"/></td>

      <tr>

      <td><input type="submit" value="登录"/></td>     

    </table>

   </form>

</body>

</html>

https://img1.mukewang.com/5c9e04c80001603c10310220.jpg

写回答 关注

2回答

  • 慕沐9054763
    2019-03-29 22:09:40

    url中自动转码,可以使用相关的函数获取到值。

  • 凌尘觉
    2019-03-29 22:08:19

    在tomcat的conf文件夹中server.xml文件,将<Connector >标签中添加URIEncoding="UTF-8"

    如初654

    刚刚试过了 还是这样子

    2019-03-30 08:26:38

    共 1 条回复 >

JAVA遇见HTML——JSP篇

Java Web入门级教程JSP,带你轻松的学习JSP基础知识

248278 学习 · 3071 问题

查看课程

相似问题