myeclipse开发时出现这样的警告,请问这是什么回事呢。 
Severity and Description Path Resource Location Creation Time Id 
Unknown tag (html:base). mySystemV1.0/src/com/mySys/login Login.jsp line 11 1211858550343 2 
Unknown tag (html:form). mySystemV1.0/src/com/mySys/login Login.jsp line 27 1211858550343 3 
Unknown tag (html:html). mySystemV1.0/src/com/mySys/login Login.jsp line 9 1211858550343 1 
Unknown tag (html:password). mySystemV1.0/src/com/mySys/login Login.jsp line 35 1211858550343 5 
Unknown tag (html:submit). mySystemV1.0/src/com/mySys/login Login.jsp line 38 1211858550343 6 
Unknown tag (html:text). mySystemV1.0/src/com/mySys/login Login.jsp line 31 1211858550343 4 
高手帮忙啊, 
还有为什么我写的程序不能保存呢?提示can not useing ISO-8859-1

解决方案 »

  1.   

    你的文件里是不是有中文字符,如果有的话,把文件用中文编码编译在文件上点击右键 选择properties,在Text file encoding中选择other,在下拉中选择UTF-8。点击ok。在保存试试
      

  2.   

    都是最基础的问题,先解决不能保存的问题: 打开之,ctrl+a ctrl+x 右键选择properties,在Text file encoding中选择other,在下拉中选择UTF-8。点击ok,最后ctrl+v,接着ctrl+s 没有提示,保存好了。第二个问题,首先确保你的lib包下有struts的相关jar包,和tld文件,其次保证jsp页面导入了相应的tld文件。例如:
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>