JAVA解析字符串 并保存到本地
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA解析字符串 并保存到本地相关的知识,希望对你有一定的参考价值。
<html>
<head>
</head>
<body>
<strong><font size="3" color="#009933">Mr Sun</font></strong> <strong><font size="3" color="#009933">2012-3-19
11:11:20<br></font></strong>1234yertgsfdvASfdaeujfyjghzASdawgrasAS<br>
</body>
</html>
需要解析为: 2012-3-19 11:11:20 1234yertgsfdvASfdaeujfyjghzASdawgrasAS
import java.util.regex.Pattern;
//正则表达式
public class Regex
public static void main(String args[])
Pattern pattern=Pattern.compile("<([^>]*)>");
String string="<strong><font size=\"3\" color=\"#009933\">Mr Sun</font></strong> <strong><font size=\"3\" color=\"#009933\">2012-3-19 11:11:20<br></font></strong> 1234yertgsfdvASfdaeujfyjghzASdawgrasAS<br></body>";
//char c;
StringBuffer string1=new StringBuffer();
Matcher matcher=pattern.matcher(string);
boolean result1 = matcher.find();
while (result1)
matcher.appendReplacement(string1, "");
result1 = matcher.find();
matcher.appendTail(string1);
System.out.println(string1);
参考技术A 用javascript先获取值。然后传到JAVA后台处理。也可以用JAVASCRIPT处理 参考技术B 楼上正解
以上是关于JAVA解析字符串 并保存到本地的主要内容,如果未能解决你的问题,请参考以下文章