如何在jsp测试属性中附加String

时间:2014-10-24 11:17:21

标签: java jsp

在以下代码中,page.currentPagePath例如www.indexvalue.pathwww.index.html。我想检查两者是否不等于

<c:if test="${page.currentPagePath '.html' ne value.path} }">
                                    <li class="main-nav">                                            
                                        <a class="main-nav-link"
                                           href="${value.redirectPath}">${value.pageTitle}</a>
                                    </li>
                                    </c:if>

如何在测试中将.html附加到page.currentPagePathpage.currentPagePath '.html'无效

1 个答案:

答案 0 :(得分:2)

concatenator运算符与Java中的相同:+

${(page.currentPagePath + '.html') ne value.path}