换行问题
我有一段很长的文本内容,需要显示在textarea文本框中,怎么显示出来的都在一行里没有换行,我明明按了回车,怎么搞的啊?请大师们指点以下
不行啊显示出来是空格,我在javabean里加了个
public String GetContent(String content)
{
String postCon=content;
int i;
while(postCon.indexOf("<BR>")>0)
{
i=postCon.indexOf("<BR>");
if(i>0) postCon=postCon.substring(0,i)+"\r\n"+postCon.substring(i+4);
}
return postCon;
}
// "\r\n"---><BR>
public String ShowContent(String content)
{
String postCon=content;
int i;
while(postCon.indexOf("\r\n")>0)
{
i=postCon.indexOf("\r\n");
if(i>0) postCon=postCon.substring(0,i)+"<BR>"+postCon.substring(i+2);
}
return postCon;
}
在jsp中怎么调用啊