jsp中如何格式化字符串?

发布于 2024-11-02 11:27:25 字数 306 浏览 1 评论 0原文

在数据库中,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

甩你一脸翔 2024-11-09 11:27:25
<TD><center><%=rs.getString(1)!=null?rs.getString(1).subString(rs.getString(1).indexOf("-")+1):"-"%></center></TD>  
<TD><center><%=rs.getString(2)!=null?rs.getString(2).subString(0,rs.getString(2).indexOf(".")):"-"%></center></TD> 
<TD><center><%=rs.getString(1)!=null?rs.getString(1).subString(rs.getString(1).indexOf("-")+1):"-"%></center></TD>  
<TD><center><%=rs.getString(2)!=null?rs.getString(2).subString(0,rs.getString(2).indexOf(".")):"-"%></center></TD> 
笑咖 2024-11-09 11:27:25

我建议您避免在视图中使用javacode。您可以从 DB 获取并填充 POJO 列表,然后您可以使用 JSTL 将其呈现在视图上,

并且按照您当前的方式,您可以通过以下方式使其工作

<TD><center><%=rs.getString(1).subString(rs.getString(1).indexOf("-")+1)%></center></TD>  
<TD><center><%=rs.getString(2).subString(0,rs.getString(2).indexOf("."))%></center></TD>  

另请参阅

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

<TD><center><%=rs.getString(1).subString(rs.getString(1).indexOf("-")+1)%></center></TD>  
<TD><center><%=rs.getString(2).subString(0,rs.getString(2).indexOf("."))%></center></TD>  

Also See

苏别ゝ 2024-11-09 11:27:25

对于日期,您可以使用 SimpleDateFormat ,对于第二个列使用 String 的子字符串函数< /a>.

或者使用子字符串作为

rs.getString(1).substring(rs.getString(1).indexOf("-")+1)  
rs.getString(2).substring(0,rs.getString(2).indexOf("."))

For date you can use SimpleDateFormat and for second column use substring function of String.

Or use substring for both as

rs.getString(1).substring(rs.getString(1).indexOf("-")+1)  
rs.getString(2).substring(0,rs.getString(2).indexOf("."))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文