首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

在后台添加一篇文章,在前台显示的格式与后台添加的这篇文章格式一模一样解决方案

2012-01-24 
在后台添加一篇文章,在前台显示的格式与后台添加的这篇文章格式一模一样有没有谁做过在后台添加一篇文章,

在后台添加一篇文章,在前台显示的格式与后台添加的这篇文章格式一模一样
有没有谁做过
在后台添加一篇文章,在前台显示的格式与后台添加的这篇文章格式一模一样  
该怎么实现,,谢了,

[解决办法]
/**
* Function Detail : 对输入的字符处理
* @param pstrWord
* @return
* @throws java.io.UnsupportedEncodingException
*/
public static String replaceIn(String pstrWord) throws Exception
{
//pstrWord = replace(pstrWord);
pstrWord = htmlEncode(pstrWord);
pstrWord = pstrWord.replaceAll( "\n ", " <br> ");
pstrWord = pstrWord.replaceAll( " ", "&nbsp ");
pstrWord = pstrWord.replaceAll( " ", "&nbsp; ");
return pstrWord;
}
/**
* Function Detail : 对输出的字符处理
* @param pstrWord
* @return
* @throws java.io.UnsupportedEncodingException
*/
public static String replaceOut(String pstrWord) throws Exception
{
pstrWord = pstrWord.replaceAll( " <br> ", "\n ");
pstrWord = pstrWord.replaceAll( "&nbsp ", " ");
pstrWord = pstrWord.replaceAll( "&nbsp; ", " ");
pstrWord = toChinese(pstrWord);
return pstrWord;
}
这些可以完成的(转自另一高手名字忘了)

热点排行