遇到一个需求,将页面中所有的title中所有的 "中新网"或"中新" 替换成"中国移动",代码如下:
try { Document doc = Jsoup.parse(file,"utf-8"); String s = "哈哈中新网了啦"; System.out.println(s.replaceAll("中新.", "中国移动")); } catch (IOException e) { e.printStackTrace(); }
待改进
遇到一个需求,将页面中所有的title中所有的 "中新网"或"中新" 替换成"中国移动",代码如下:
try { Document doc = Jsoup.parse(file,"utf-8"); String s = "哈哈中新网了啦"; System.out.println(s.replaceAll("中新.", "中国移动")); } catch (IOException e) { e.printStackTrace(); }
待改进