jsp中如何格式化字符串?
在数据库中,column1 的日期类似于 2011-03-03,但我只想显示 03-03 和 column2 有类似 BHEL.NS 的字符串,但我只想显示 BHEL。
<TD><center><%=rs.getString(1)%></center></TD>
<TD><center><%=rs.getString(2)%></center></TD>
如何做到这一点?
提前致谢..
In the database column1 have date like 2011-03-03 but I want to show only 03-03 and in
column2 have string like BHEL.NS but I want to show only BHEL.
<TD><center><%=rs.getString(1)%></center></TD>
<TD><center><%=rs.getString(2)%></center></TD>
How to do this?
thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议您避免在视图中使用javacode。您可以从 DB 获取并填充 POJO 列表,然后您可以使用 JSTL 将其呈现在视图上,
并且按照您当前的方式,您可以通过以下方式使其工作
另请参阅
I would recommend you to avoid javacode in view. You can have List of your POJOs fetched and filled up from DB , and then you can render it on view using JSTL
And with your current way you can make it working by following way
Also See
对于日期,您可以使用 SimpleDateFormat ,对于第二个列使用 String 的子字符串函数< /a>.
或者使用子字符串作为
For date you can use SimpleDateFormat and for second column use substring function of String.
Or use substring for both as