JSP中replace的用法
<%for(inti=0;i<list.size();i++){Usersuser=usersDao.getUsersById(list.get(i).getUserId...
<% for(int i=0;i<list.size();i++){ Users user=usersDao.getUsersById(list.get(i).getUserId()); ShortMess shortMess=list.get(i); HashMap<String,Image> map=imgDao.getImagesList(0); while(shortMess.getContent().indexOf("//")!=-1){ int index=shortMess.getContent().indexOf("//"); if(index!=shortMess.getContent().length()-2){ String check=shortMess.getContent().substring(index,index+4); if(map.containsKey(check)){ Image img=map.get(check); shortMess.getContent().replace(check,"<img src='"+img.getPath()+"' >"); } } } %> <div><br><img src="../images/iboy.gif"></img> <%=user.getUserName() %> <strong>:</strong><br> <%=shortMess.getContent() %></div> <%} %> 我想循环将带“//”的那些字符替换成图片。。可是不行诶!不要while循环的时候能有东西显示,,,可是加了while循环就不行。。 在replace的时候并没有将那些字符替换掉! 请问有哪位知道怎么解决这个问题没有?
展开
2个回答
展开全部
shortMess.getContent().replace(check,"<img src='"+img.getPath()+"' >"); 改成 shortMess.setContent(shortMess.getContent().replace(check,"<img src='"+img.getPath()+"乎慎知'孝乎 >")); 试岁消一下
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-12-07 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
java中replace用法举例:
replace(char oldChar, char newChar)
返回一个新的字符串,它是通过用 newChar 替厅铅磨扮斗换此字符串中出现的所有 oldChar 而生成的。
public class TestReplace {
public static void main(String[] args) {
String s = "This is my original string ,it is very good!";
String r = "at";
s = s.replace("is",r);
System.out.println(s);
}
}
输出激茄结果:
That is my original string ,it is very good!
replace(char oldChar, char newChar)
返回一个新的字符串,它是通过用 newChar 替厅铅磨扮斗换此字符串中出现的所有 oldChar 而生成的。
public class TestReplace {
public static void main(String[] args) {
String s = "This is my original string ,it is very good!";
String r = "at";
s = s.replace("is",r);
System.out.println(s);
}
}
输出激茄结果:
That is my original string ,it is very good!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询