<% 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 回答
慕姐4208626
TA贡献1852条经验 获得超7个赞
shortMess.getContent().replace(check,"<img src='"+img.getPath()+"' >"); 改成 shortMess.setContent(shortMess.getContent().replace(check,"<img src='"+img.getPath()+"' >")); 试一下
添加回答
举报
0/150
提交
取消