这是我的 JSP 文件。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%
//JFileChooser filechoose = new JFileChooser();
JFileChooser filechoose = new JFileChooser("D:\\");
filechoose.showOpenDialog(null);
File file = filechoose.getSelectedFile();
XLCauHoi.ImportXmlFileToData(file);
%>
<h4> Đã xuất file thành công </h4>
</body>
</html>
我的问题是:JFileChooser
当我在浏览器上运行它时弹出 2 次。如果我在 Java 类中运行它,会JFileChooser
弹出 1 次。我的问题是什么以及如何解决?