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

📄 listchat.jsp

📁 jsp网站编程技巧教程 想学jsp的来吧
💻 JSP
字号:
<html>
<title>
</title>
<head>
</head>
<body>
<%@  page import="java.util.Vector" %>

<%@ page contentType="text/html;charset=gb2312" %>
<%!
Vector temp=new Vector();
%>
<font color="red" size="2">第1聊天室:</font><br>
<font color="red" size="2">人数:
<%
temp=(Vector)getServletContext().getAttribute("chat1User"); 
out.println(temp.size()); 
%>
</font><br>
<font color="red" size="2">论题:
<% 
out.println(getServletContext().getAttribute("chat1Topic").toString()); 
%>
</font><br>

</body>
</html>

⌨️ 快捷键说明

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