iso8859_1writer.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 137 行

JAVA
137
字号
/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the * *   Free SoftwareFoundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package com.caucho.vfs.i18n;import com.caucho.vfs.OutputStreamWithBuffer;import java.io.IOException;/** * Implements the ISO-8859-1 EncodingWriter factory. */public final class ISO8859_1Writer extends EncodingWriter {  private final static ISO8859_1Writer _writer = new ISO8859_1Writer();  /**   * Null-arg constructor for instantiation by com.caucho.vfs.Encoding only.   */  public ISO8859_1Writer()  {  }    /**   * Returns the Java encoding for the writer.   */  public String getJavaEncoding()  {    return "ISO8859_1";  }  /**   * Returns null, since WriteStream handles ISO-8859-1 directly.   *   * @return null for ISO-8859-1   */  public EncodingWriter create(String javaEncoding)  {    return _writer;  }  /**   * Returns null, since WriteStream handles ISO-8859-1 directly.   *   * @return null for ISO-8859-1   */  public EncodingWriter create()  {    return _writer;  }  /**   * Returns the writer.   */  public static EncodingWriter getStaticWriter()  {    return _writer;  }    /**   * Writes a character to the output stream with the correct encoding.   *   * @param ch the character to write.   */  public void write(OutputStreamWithBuffer os, char ch)    throws IOException  {    os.write(ch);  }  /**   * Writes a character buffer using the correct encoding.   *   * @param cbuf character buffer receiving the data.   * @param off starting offset into the buffer.   * @param len number of characters to write   */  @Override  public void write(OutputStreamWithBuffer os,		    char []cBuf, int cOffset, int cLength)    throws IOException  {    byte []bBuf = os.getBuffer();    int bOffset = os.getBufferOffset();    int bEnd = bBuf.length;    // int cEnd = cOffset + cLength;    while (cLength > 0) {      int sublen = bEnd - bOffset;      if (cLength < sublen)	sublen = cLength;      for (int i = 0; i < sublen; i++) {	bBuf[bOffset + i] = (byte) cBuf[cOffset + i];      }      bOffset += sublen;      cOffset += sublen;      cLength -= sublen;            if (bOffset == bEnd) {	bBuf = os.nextBuffer(bOffset);	bOffset = os.getBufferOffset();	bEnd = bBuf.length;      }    }    os.setBufferOffset(bOffset);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?