myeclipse加入jsp页面后自动关闭

sxl0520 2009-05-01 12:07:48
当myeclipse6.0的项目里加入一个jsp时,myeclipse出错,自动关闭,并且myeclipse6.0无法启动,还是提示同样的错误,当把这个jsp从项目里删掉后,就一切恢复正常了。
前几天还可以的,这几天总出这样的错。别的jsp页面没事,只有加入这一个时才出错。
jsp代码:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<html:html locale="true">
<head>
<html:base />

<title>:: 人事管理系统 :: PERSON MIB ::</title>

<link href="xudi.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
<link href="SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />

<logic:equal value="2" name="vo" property="role">
<style type="text/css">
<!--
.role{display: none;}
-->
</style>
</logic:equal>

</head>


<script>
function switchSysBar(){
if (switchPoint.innerText==3){
switchPoint.innerText=4
document.all("frmTitle").style.display="none"
}else{
switchPoint.innerText=3
document.all("frmTitle").style.display=""
}
}

setInterval("aa.innerHTML=new Date().toLocaleString()+' 星期'+'日一二三四五六'.charAt(new Date().getDay());",1000);
</script>

<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="46" align="center" valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="79%" background="images/topling_02.gif" class="topline">:: 人事管理系统 :: PERSON MIB ::</td>
<td id="aa" width="21%" align="left" valign="middle" background="images/topling_02.gif" style="color: #fff;"></td>
</tr>
<tr>
<logic:equal value="1" name="vo" property="role">
<td height="25" align="left" valign="middle" class="navbar" style="padding-left: 30px;">管理员登陆:您好${vo.name},欢迎登陆本系统!</td>
</logic:equal>
<logic:equal value="2" name="vo" property="role">
<td height="25" align="left" valign="middle" class="navbar" style="padding-left: 30px;">普通员工登陆:您好${vo.name},欢迎登陆本系统!</td>
</logic:equal>
<td height="25" align="right" valign="middle" bgcolor="#213B62" style="padding-right: 20px;"><a href="index.jsp" onFocus="if(this.blur)this.blur()" target="_self"><img src="images/home.gif" width="79" height="16" border="0" align="absbottom"/></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="150" align="left" valign="top" bgcolor="#E0E8EF" id="frmTitle">

<div class="role">
<div id="CollapsiblePanel1" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0" onfocus="if(this.blur)this.blur()">:::::  人员管理 :::::</div>
<div class="CollapsiblePanelContent">
<p><a href="/PersonMIB/manager/emp_add.jsp" target="main">添加员工信息</a></p>
<p><a href="/PersonMIB/manager/emp_selectall.jsp" target="main">查询员工信息</a></p>
</div>
</div>
</div>

<div class="role">
<div id="CollapsiblePanel2" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0" onfocus="if(this.blur)this.blur()">:::::  工资管理 :::::</div>
<div class="CollapsiblePanelContent">
<p><a href="/PersonMIB/manager/pay_add.jsp" target="main">添加员工工资信息</a></p>
<p><a href="/PersonMIB/manager/pay_selectall.jsp" target="main">查询员工工资信息</a></p>
</div>
</div>
</div>

<div class="role">
<div id="CollapsiblePanel3" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0" onfocus="if(this.blur)this.blur()">:::::  请假管理 :::::</div>
<div class="CollapsiblePanelContent">
<p><a href="/PersonMIB/manager/leave_add.jsp" target="main">添加员工请假信息</a></p>
<p><a href="/PersonMIB/manager/leave_selectall.jsp" target="main">查询员工请假信息</a></p>
</div>
</div>
</div>

<div class="role">
<div id="CollapsiblePanel4" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0" onfocus="if(this.blur)this.blur()">:::::  打印报表 :::::</div>
<div class="CollapsiblePanelContent">
<p><a href="/PersonMIB/emp_selectall.do?type=reportform" target="_blank">员工报表</a></p>
<p><a href="/PersonMIB/pay_selectall.do?type=reportform" target="_blank">工资报表</a></p>
<p><a href="/PersonMIB/leave_selectall.do?type=reportform" target="_blank">请假报表</a></p>
</div>
</div>
</div>

<div id="CollapsiblePanel5" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0" onfocus="if(this.blur)this.blur()">:::::  我的信息 :::::</div>
<div class="CollapsiblePanelContent">
<p><a href="/PersonMIB/myinfo.do?type=empinfo&id=${vo.id}" target="main">我的基本信息</a></p>
<p><a href="/PersonMIB/myinfo.do?type=payinfo&id=${vo.id}" target="main">我的工资信息</a></p>
<p><a href="/PersonMIB/myinfo.do?type=leaveinfo&id=${vo.id}¤tpage=1&pagerecorders=10" target="main">我的请假信息</a></p>
<p><a href="/PersonMIB/user/modifyPassword.jsp" target="main">修改登陆密码</a></p>
</div>
</div>

<div id="CollapsiblePanel6" class="CollapsiblePanel">
<div class="CollapsiblePanelTab" tabindex="0" onfocus="if(this.blur)this.blur()">:::::  系统操作 :::::</div>
<div class="CollapsiblePanelContent">
<p><a href="" onClick="javascript:window.close();">关闭本系统</a></p>
<p><a href="login.jsp" onFocus="if(this.blur)this.blur()" target="_self">返回登陆页面</a></p>
</div>
</div>
</td>
<td width="12" align="center" valign="middle" bgcolor="#B9CBDB" style="border-left: solid 1px #486C8C;border-right: solid 1px #486C8C;" onClick="switchSysBar()"><div class="navPoint" id="switchPoint" >3</div></td>
<td align="center" valign="top" background="images/mainbg_03.gif" style="padding:10px 0;">
<iframe name="main" id="mainframe" allowtransparency="true" scrolling="no" style="padding:0; margin:0;" src="welcome.html" frameborder="0" height="490" width="800"></iframe>
</td>
</tr>
</table>
</td>
</tr>
</table>

<script type="text/javascript">
<!--
var CollapsiblePanel1 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel1", {contentIsOpen:false});
var CollapsiblePanel2 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel2", {contentIsOpen:false});
var CollapsiblePanel3 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel3", {contentIsOpen:false});
var CollapsiblePanel4 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel4", {contentIsOpen:false});
var CollapsiblePanel5 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel5", {contentIsOpen:false});
var CollapsiblePanel6 = new Spry.Widget.CollapsiblePanel("CollapsiblePanel6", {contentIsOpen:false});
//-->
</script>
</body>
</html:html>
...全文
393 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
QQ153984069 2010-03-01
  • 打赏
  • 举报
回复
我也碰到这样的问题。
sxl0520 2009-05-03
  • 打赏
  • 举报
回复
可是以前的好好的,没改过什么啊!
super2 2009-05-01
  • 打赏
  • 举报
回复
可能是标签的问题,校验出错
源码链接: https://pan.quark.cn/s/0f7c75cb3aad ### MIPI Video Mode 与 Command Mode 的差异 #### 一、引言 MIPI (Mobile Industry Processor Interface) 是一种用于连接移动设备中处理器及其外围设备的标准化接口。MIPI 接口支持多种协议,其中包含 DSI (Display Serial Interface) 和 DCS (Display Control Interface) 等协议。在 MIPI 接口的应用中,主要涉及两种工作模式:Video Mode(视频模式)和 Command Mode(命令模式)。本文旨在系统性地阐述这两种模式的工作机制、特性以及实际应用环境。 #### 二、LCD RAM 概念说明 在进一步探讨 MIPI 的两种模式之前,有必要对文中提及的“LCD RAM”概念进行明确。实际上,“LCD RAM”并非一个通用术语,而是本文作者用来描述 LCD 控制器中用于存储显示数据的内存区域。LCD(Liquid Crystal Display,液晶显示屏)通常配备一个控制 IC(Integrated Circuit,集成电路),该控制 IC 可能内置 RAM 以缓存显示数据。 #### 三、MIPI Video Mode(视频模式) **定义:** - 视频模式是一种类似于传统 RGB 接口的工作模式,它要求主机持续不断地向显示器传输刷新数据。 - 在这种模式下,数据和控制信号以报文的形式通过 MIPI 总线进行传输。 - 显示器本身无需配备帧缓冲器,因为主机会周期性地刷新屏幕。 **特点:** 1. **实时性高:** 主机需要不...

58,440

社区成员

发帖
与我相关
我的任务
社区描述
Java Eclipse
社区管理员
  • Eclipse
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧