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.Matcher;
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解析字符串 并保存到本地的主要内容,如果未能解决你的问题,请参考以下文章

Java 保存对象到本地

java解析传过来的json字符串并以数组的方式保存

js 把字符串保存为txt文件,并下载到本地

java怎么在xml文件中保存和读取字符串数组

在 iOS 设备上本地保存解析对象

python 怎么读取网络zip字节流,并保存到本地zip文件中?