rollnews.jsp
上传用户:xjrzjk
上传日期:2022-07-31
资源大小:1585k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%@ page import="java.io.*"%>
  3. <%
  4.   try{
  5.   //取得当前目录路径
  6.   String strPath = request.getRealPath("");
  7.   //建立FileReader对象
  8.   FileReader fr = new FileReader(strPath + "\scroll.txt");
  9.   //建立BufferedReader对象
  10.   BufferedReader br = new BufferedReader(fr);
  11.   //从文件读取一行字符串
  12.   String Line = br.readLine();
  13.   //判断读取到的字符串是否不为空
  14.   String strNews = "";
  15.   while(Line != null){
  16.     strNews += Line + "<br>";
  17.     Line = br.readLine();
  18.   }
  19.   br.close();
  20.   fr.close();
  21. %>
  22. <html>
  23. <head>
  24. <title>
  25. 读取滚动新闻
  26. </title>
  27. </head>
  28. <body bgcolor="#ffffff">
  29. <marquee style="color:#000000;font-size:12px;line-height:20px;" direction="up" height="70" scrollamount="1" scrolldelay="100" onMouseOver="this.scrollDelay=500" onMouseOut="this.scrollDelay=1">
  30. <%=strNews%>
  31. </marquee>
  32. </body>
  33. </html>
  34. <%
  35.   }catch(Exception e){
  36.     e.printStackTrace();
  37.   }
  38. %>