截取在线编辑器的字符串的处理

原文链接: http://yidwo.iteye.com/blog/60097

package html;

import java.util.ArrayList;

import java.util.List;

import java.util.regex.Pattern;

import java.util.regex.Matcher;

/**
 * 
 * 
 * 按字节长度截取字符串(支持截取带HTML代码样式的字符串)
 * 
 * 
 * @param param
 *            将要截取的字符串参数
 * 
 * 
 * @param length
 *            截取的字节长度
 * 
 * 
 * @param end
 *            字符串末尾补上的字符串
 * 
 * 
 * @return 返回截取后的字符串
 * 
 * 
 */

public class SubStringHTML

{
	public static void main(String[] argv) {
		String content="

 

厦门污水处理厂鸟瞰图

 

中环保水务投资公司下属企业厦门污水处理厂在福建省城市污水处理厂运行评估考核中取得第一名的优异成绩。

福建省政府办公厅为加强规范城市污水处理厂的运行管理,促进达标排放,省建设厅组织19名专家组成评估考核小组,对全省30座城市污水处理厂开展运行评估考核工作。各评估小组通过听取污水处理厂运行情况汇报,查验相关人员资格证书、运行工艺及化验检测报表、原始记录等资料,计算分??评议,对各污??水质管理、安全管理、厂容厂貌、财务管理、档案管理等8个大大类进行全面细致的考核,重点评估工艺运行管理和水质管理。在本次评估考核30污水处理厂中,中环水务下属企业厦门污水处理厂得分最高。在机构设置、人员备齐、工艺运行管理和水质管理、原始记录、规章制度建立等各方面规范、到位。

"; System.out.println(subStringHTML(content,100,"......")); } public static String subStringHTML(String param, int length, String end) { StringBuffer result = new StringBuffer(); int n = 0; char temp; boolean isCode = false; // 是不是HTML代码 boolean isHTML = false; // 是不是HTML特殊字符,如 for (int i = 0; i < param.length(); i++) { temp = param.charAt(i); if (temp == '<') { isCode = true; } else if (temp == '&') { isHTML = true; } else if (temp == '>' && isCode) { n = n - 1; isCode = false; } else if (temp == ';' && isHTML) { isHTML = false; } if (!isCode && !isHTML) { n = n + 1; // UNICODE码字符占两个字节 if ((temp + "").getBytes().length > 1) { n = n + 1; } } result.append(temp); if (n >= length) { break; } } result.append(end); // 取出截取字符串中的HTML标记 String temp_result = result.toString().replaceAll("(>)[^<>]*(]*/?>",""); // 去掉成对的HTML标记 temp_result = temp_result.replaceAll("<([a-zA-Z]+)[^<>]*>(.*?)","$2"); // 用正则表达式取出标记 Pattern p = Pattern.compile("<([a-zA-Z]+)[^<>]*>"); Matcher m = p.matcher(temp_result); List endHTML = new ArrayList(); while (m.find()) { endHTML.add(m.group(1)); } // 补全不成对的HTML标记 for (int i = endHTML.size() - 1; i >= 0; i--) { result.append(""); } return result.toString(); } }

 

你可能感兴趣的:(web(此分类下内容全为转载),Office,正则表达式,HTML,Microsoft,Blog)