首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

java.io.UTFDataFormatException: Invalid UTF8 encode,jsp 异常

2014-01-26 
把eclipse中的项目转到jdeveloper中时,每个jsp文件的如下两行都会出现标题中的错误:%@ taglib urihttp:/

把eclipse中的项目转到jdeveloper中时,每个jsp文件的如下两行都会出现标题中的错误:
  <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
  <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>   


java.io.UTFDataFormatException: Invalid UTF8 encode

------解决方法--------------------------------------------------------
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
  <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
  <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>

        

热点排行