我已经使用类将整个 xml 文件作为单个字符串读取。输出是
String result=<?xml version="1.0"?><catalog><book id="bk101"><part1><date>Fri Apr 05 11:46:46 IST 2013</date><author>Gambardella, Matthew</author><title>XML Developer's Guide</title><genre>Computer</genre><price>44.95</price> <publish_date>2000-10-01</publish_date></part1></book></catalog>
现在我想替换日期值。所以首先我想从字符串中提取日期并替换新值。我有以下代码,
Date date=new Date()
String str=result.substring(result.indexOf("<date>"));
它显示从日期标签到结束标签的整个字符串。如何提取日期标签并替换它?