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

WEB邮件程序

开发平台:

C/C++

  1. /*
  2.  * MessageOutputStream.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 escapes any dots on a line by themself with
  26.  * another dot, for the purposes of sending messages to SMTP and NNTP servers.
  27.  *
  28.  * @author dog@dog.net.uk
  29.  * @version 1.0
  30.  */
  31. public class MessageOutputStream extends FilterOutputStream {
  32. /**
  33.  * The stream termination octet.
  34.  */
  35. public static final int END = 46;
  36. /**
  37.  * The line termination octet.
  38.  */
  39. public static final int LF = 10;
  40. int last = -1; // the last character written to the stream
  41. /**
  42.  * Constructs a message output stream connected to the specified output stream.
  43.  * @param out the target output stream
  44.  */
  45. public MessageOutputStream(OutputStream out) {
  46. super(out);
  47. }
  48. /**
  49.  * Writes a character to the underlying stream.
  50.  * @exception IOException if an I/O error occurred
  51.  */
  52. public void write(int ch) throws IOException {
  53. if ((last==LF || last==-1) && ch==END)
  54. out.write(END); // double any lonesome dots
  55. super.write(ch);
  56. }
  57. /**
  58.  * Writes a portion of a byte array to the underlying stream.
  59.  * @exception IOException if an I/O error occurred
  60.  */
  61. public void write(byte b[], int off, int len) throws IOException {
  62. int k = last != -1 ? last : LF;
  63. int l = off;
  64. len += off;
  65. for (int i = off; i < len; i++) {
  66. if (k==LF && b[i]==END) {
  67. super.write(b, l, i-l);
  68. out.write(END);
  69. l = i;
  70. }
  71. k = b[i];
  72. }
  73. if (len-l > 0)
  74. super.write(b, l, len-l);
  75. }
  76. }