7万
861
32万
论坛元老
复制代码 代码如下:public static String htmlToStr(String htmlStr){ String result = ""; boolean flag = true; if(htmlStr==null){ return null; } htmlStr = htmlStr.replace("\"", ""); //去掉引号 char[] a = htmlStr.toCharArray(); int length=a.length; for(int i=0;i<length;i++){ if(a[i]=='<'){ flag=false; continue; } if(a[i]=='>'){ flag=true; continue; } if(flag==true){ result+=a[i]; } } return result.toString(); }
使用道具 举报
0
2万
194
注册会员
1万
100
68
11
300
中级会员
2
381
7
288
13
97
本版积分规则 发表回复 回帖后跳转到最后一页
手机版|小黑屋|网站地图|源码论坛 ( 海外版 )
GMT+8, 2024-11-22 03:10 , Processed in 0.213624 second(s), 26 queries .
Powered by Discuz! X3.4
Copyright © 2001-2020, Tencent Cloud.