去掉img标签里的width 和 height的属性

public class ImageRemove {
  public static void main(String args[]){
      String html = "
";
      html = html.replaceAll("(]*?)\\s+width\\s*=\\s*\\S+","$1");
      html = html.replaceAll("(]*?)\\s+height\\s*=\\s*\\S+","$1");
      
      System.out.println(html);
  }
}

你可能感兴趣的:(J2EE)