0
FileReader f0 = new FileReader("1.html");
StringBuilder sb = new StringBuilder();
BufferedReader br = new BufferedReader(f0);
while((temp1=br.readLine())!=null)
{
sb.append(temp1);
}
String para = sb.toString().replaceAll("<br>","\n");
String textonly = Jsoup.parse(para).text();
System.out.println(textonly);

FileWriter f1=new FileWriter("1.txt");
char buf1[] = new char[textonly.length()];
textonly.getChars(0,textonly.length(),buf1,0);

for(i=0;i<buf1.length;i++)
 {
 if(buf1[i]=='\n')
  f1.write("\r\n");
 f1.write(buf1[i]);

在制作新的文本文件时,这段代码是多行的,我希望文本文件应该只有一行。我怎样才能做到这一点。

4

3 回答 3

2

停止将换行符 \n 写入文件,您应该停止制作多行。

于 2012-06-23T06:33:41.770 回答
0

<\br> 和 \n 不是同一种东西吗?如果你这样做,你的文本不会有任何变化。您需要将 <\br> 替换为空格。

String para = sb.toString().replaceAll("<br>"," ");
于 2012-06-23T08:00:02.713 回答
0

即使在删除所有 \n 之后,它也会产生多行。

我认为错误在以下代码中:

for( i = 0; i < buf1.length; i++ )
{
     if( buf1[ i ] == '\n' )
         f1.write( "\r\n" );
     f1.write( buf1[ i ] );

当匹配到换行符时\n,您正在写入\r\n文件并再次使用f1.write( buf1[ i ] ). 使用else将停止\n再次写入文件。

for( i = 0; i < buf1.length; i++ )
{
     if( buf1[ i ] == '\n' )
     {
         f1.write( "\r\n" );
     }
     else
     {
         f1.write( buf1[ i ] );
     }
     // ...
} // for

或者在编写时 使用三元运算符替换\n为。\r\n

f1.write( buf1[ i ] == '\n' ? "\r\n" : buf1[ i ] );
于 2012-06-23T14:25:05.080 回答