如何比较string是否不相等?

我试图只显示的东西,如果一个string不等于:

<c:if test="${content.getContentType().getName() != "MCE"}"> <li><a href="#publish-history" id="publishHistoryTab">Publish History</a></li> </c:if> 

它一直抛出错误org.apache.jasper.JasperException: /WEB-INF/jsp/content/manage.jsp(14,60) PWC6212: equal symbol expected

我也试过not eq而不是!=

什么是not equal to的有效语法?

无论是!=还是ne都能工作 ,但是你需要获得访问器的语法和嵌套的引号 。

 <c:if test="${content.contentType.name ne 'MCE'}"> <%-- snip --%> </c:if>