请帮助解决问题,有一个表格,这里是代码:
<form action="test" method="Post">
<input type="text" name="text" autofocus >
<input type="submit" value="">
</form>
我在其中输入文件的名称,然后将名称传递给 servlet。这是一段servlet代码:
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException{
request.setCharacterEncoding("UTF-8");
response.setContentType("text/html; charset=UTF-8");
String myName = request.getParameter("text");
我有一个表格可以输入这样的文件名:test.txt,你可以只输入一个测试,没有txt?我会非常感谢答案,如果你给他们一段代码)我只输入扩展名为 txt 的文件,不需要