⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 export-file.jsp

📁 基于Jabber协议的即时消息服务器
💻 JSP
字号:
<%@ page import="java.io.OutputStream,                 org.jivesoftware.wildfire.XMPPServer,                 org.jivesoftware.wildfire.plugin.ImportExportPlugin"         contentType="application/x-download"%><%    String fileName = request.getParameter("fileName");    response.setContentType("application/x-download");    response.setHeader("Content-Disposition","attachment;filename="+fileName+".xml");    ImportExportPlugin plugin = (ImportExportPlugin) XMPPServer.getInstance().getPluginManager().getPlugin("userimportexport");    byte[] content = plugin.exportUsersToFile();    OutputStream os = response.getOutputStream();    os.write(content);    os.flush();    os.close();%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -