watchnews.jsp~3~

来自「jsp技术 基于struts框架的新闻发布系统」· JSP~3~ 代码 · 共 21 行

JSP~3~
21
字号
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.sql.*"%>
<%@ page import="java.util.List"%>
<%@ page import="com.victor.domain.NewsActionForm"%>
<%@ page import="com.victor.tool.Chinese"%>
<html>
<head>
<title>前台显示新闻</title>
</head>
<%Chinese chinese=new Chinese();%>
<%List list=(List)request.getAttribute("listType");%>
<%for(int i;i<list.size();i++)
{ NewsActionForm newsAction=(NewsActionForm)list.get(i);
%>
<body bgcolor="#ffffc0">
<div align="center"><%=newsAction.getNewsType()%></div>
<h1>&nbsp;</h1>
</body>
<%}%>
</html>

⌨️ 快捷键说明

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