struts2的一个bug
java0898010
2011-03-04
<s:property value="uploadFile.substring(uploadFile.lastIndexOf('20'))" />
这样代码是没有问题。但是下面的代码 <s:property value="%{uploadFile.substring(uploadFile.lastIndexOf('\\'))}" /> 因为我的路径里面带有路径,用\\结果就为空,我用各种数据都做了测试,只要是路径分隔符就有问题。 有人遇到这样的情况没有?我怀疑是struts的bug |
|
xianshi_cn
2011-07-22
试试
<s:property value="%{uploadFile.substring(uploadFile.lastIndexOf('\\\\'))}" /> 或 <s:property value="%{uploadFile.substring(uploadFile.lastIndexOf('/'))}" /> |