CRLFOutputStream.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:3k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2.  * CRLFOutputStream.java
  3.  * Copyright (C) 1999 dog <dog@dog.net.uk>
  4.  * 
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  * 
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  * 
  19.  * You may retrieve the latest version of this library from
  20.  * http://www.dog.net.uk/knife/
  21.  */
  22. package dog.mail.util;
  23. import java.io.*;
  24. /**
  25.  * An output stream that filters LFs into CR/LF pairs.
  26.  *
  27.  * @author dog@dog.net.uk
  28.  * @version 1.0
  29.  */
  30. public class CRLFOutputStream extends FilterOutputStream {
  31. /**
  32.  * The CR octet.
  33.  */
  34. public static final int CR = 13;
  35. /**
  36.  * The LF octet.
  37.  */
  38. public static final int LF = 10;
  39. /**
  40.  * The CR/LF pair.
  41.  */
  42. public static final byte[] CRLF = { CR, LF };
  43. /**
  44.  * The last byte read.
  45.  */
  46. protected int last;
  47. /**
  48.  * Constructs a CR/LF output stream connected to the specified output stream.
  49.  */
  50. public CRLFOutputStream(OutputStream out) {
  51. super(out);
  52. last = -1;
  53. }
  54. /**
  55.  * Writes a character to the underlying stream.
  56.  * @exception IOException if an I/O error occurred
  57.  */
  58. public void write(int ch) throws IOException {
  59. if (ch==CR)
  60. out.write(CRLF);
  61. else
  62. if (ch==LF) {
  63. if (last!=CR)
  64. out.write(CRLF);
  65. } else {
  66. out.write(ch);
  67. }
  68. last = ch;
  69. }
  70. /**
  71.  * Writes a byte array to the underlying stream.
  72.  * @exception IOException if an I/O error occurred
  73.  */
  74. public void write(byte b[]) throws IOException {
  75. write(b, 0, b.length);
  76. }
  77. /**
  78.  * Writes a portion of a byte array to the underlying stream.
  79.  * @exception IOException if an I/O error occurred
  80.  */
  81. public void write(byte b[], int off, int len) throws IOException {
  82. int d = off;
  83. len += off;
  84. for (int i=off; i<len; i++)
  85. switch (b[i]) {
  86.   default:
  87. break;
  88.   case CR:
  89. if (i+1<len && b[i+1]==LF) {
  90. i++;
  91. } else {
  92. out.write(b, d, (i-d)+1);
  93. out.write(LF);
  94. d = i+1;
  95. }
  96. break;
  97.   case LF:
  98. out.write(b, d, i-d);
  99. out.write(CRLF, 0, 2);
  100. d = i+1;
  101. break;
  102. }
  103. if (len-d>0)
  104. out.write(b, d, len-d);
  105. }
  106. /**
  107.  * Writes a newline to the underlying stream.
  108.  * @exception IOException if an I/O error occurred
  109.  */
  110. public void writeln() throws IOException {
  111. out.write(CRLF);
  112. }
  113. }