当前位置: 首页>>代码示例>>Java>>正文


Java ThreadLocalBufferAllocator.getBufferAllocator方法代码示例

本文整理汇总了Java中com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator.getBufferAllocator方法的典型用法代码示例。如果您正苦于以下问题:Java ThreadLocalBufferAllocator.getBufferAllocator方法的具体用法?Java ThreadLocalBufferAllocator.getBufferAllocator怎么用?Java ThreadLocalBufferAllocator.getBufferAllocator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator的用法示例。


在下文中一共展示了ThreadLocalBufferAllocator.getBufferAllocator方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ScannedEntity

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/** Constructs a scanned entity. */
public ScannedEntity(String name,
        XMLResourceIdentifier entityLocation,
        InputStream stream, Reader reader,
        String encoding, boolean literal, boolean mayReadChunks, boolean isExternal) {
    this.name = name ;
    this.entityLocation = entityLocation;
    this.stream = stream;
    this.reader = reader;
    this.encoding = encoding;
    this.literal = literal;
    this.mayReadChunks = mayReadChunks;
    this.isExternal = isExternal;
    final int size = isExternal ? fBufferSize : DEFAULT_INTERNAL_BUFFER_SIZE;
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    ch = ba.getCharBuffer(size);
    if (ch == null) {
        this.ch = new char[size];
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:Entity.java

示例2: ScannedEntity

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/** Constructs a scanned entity. */
public ScannedEntity(boolean isGE, String name,
        XMLResourceIdentifier entityLocation,
        InputStream stream, Reader reader,
        String encoding, boolean literal, boolean mayReadChunks, boolean isExternal) {
    this.isGE = isGE;
    this.name = name ;
    this.entityLocation = entityLocation;
    this.stream = stream;
    this.reader = reader;
    this.encoding = encoding;
    this.literal = literal;
    this.mayReadChunks = mayReadChunks;
    this.isExternal = isExternal;
    final int size = isExternal ? fBufferSize : DEFAULT_INTERNAL_BUFFER_SIZE;
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    ch = ba.getCharBuffer(size);
    if (ch == null) {
        this.ch = new char[size];
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:22,代码来源:Entity.java

示例3: UTF8Reader

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/**
 * Constructs a UTF-8 reader from the specified input stream,
 * buffer size and MessageFormatter.
 *
 * @param inputStream The input stream.
 * @param size        The initial buffer size.
 * @param messageFormatter  the formatter for localizing/formatting errors.
 * @param locale    the Locale to use for messages
 */
public UTF8Reader(InputStream inputStream, int size,
        MessageFormatter messageFormatter, Locale locale) {
    fInputStream = inputStream;
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    fBuffer = ba.getByteBuffer(size);
    if (fBuffer == null) {
        fBuffer = new byte[size];
    }
    fFormatter = messageFormatter;
    fLocale = locale;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:UTF8Reader.java

示例4: ASCIIReader

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/**
 * Constructs an ASCII reader from the specified input stream
 * and buffer size.
 *
 * @param inputStream The input stream.
 * @param size        The initial buffer size.
 * @param messageFormatter  the MessageFormatter to use to message reporting.
 * @param locale    the Locale for which messages are to be reported
 */
public ASCIIReader(InputStream inputStream, int size,
        MessageFormatter messageFormatter, Locale locale) {
    fInputStream = inputStream;
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    fBuffer = ba.getByteBuffer(size);
    if (fBuffer == null) {
        fBuffer = new byte[size];
    }
    fFormatter = messageFormatter;
    fLocale = locale;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:ASCIIReader.java

示例5: UCSReader

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/**
 * Constructs an ASCII reader from the specified input stream
 * and buffer size.  The Endian-ness and whether this is
 * UCS-2 or UCS-4 needs also to be known in advance.
 *
 * @param inputStream The input stream.
 * @param size        The initial buffer size.
 * @param encoding One of UCS2LE, UCS2BE, UCS4LE or UCS4BE.
 */
public UCSReader(InputStream inputStream, int size, short encoding) {
    fInputStream = inputStream;
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    fBuffer = ba.getByteBuffer(size);
    if (fBuffer == null) {
        fBuffer = new byte[size];
    }
    fEncoding = encoding;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:UCSReader.java

示例6: close

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/**
 * Release any resources associated with this entity.
 */
public void close() throws IOException {
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    ba.returnCharBuffer(ch);
    ch = null;
    reader.close();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:Entity.java

示例7: close

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/**
 * Close the stream.  Once a stream has been closed, further read(),
 * ready(), mark(), or reset() invocations will throw an IOException.
 * Closing a previously-closed stream, however, has no effect.
 *
 * @exception  IOException  If an I/O error occurs
 */
public void close() throws IOException {
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    ba.returnByteBuffer(fBuffer);
    fBuffer = null;
    fInputStream.close();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:UTF8Reader.java

示例8: close

import com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator; //导入方法依赖的package包/类
/**
* Close the stream.  Once a stream has been closed, further read(),
* ready(), mark(), or reset() invocations will throw an IOException.
* Closing a previously-closed stream, however, has no effect.
*
* @exception  IOException  If an I/O error occurs
*/
public void close() throws IOException {
    BufferAllocator ba = ThreadLocalBufferAllocator.getBufferAllocator();
    ba.returnByteBuffer(fBuffer);
    fBuffer = null;
    fInputStream.close();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:ASCIIReader.java


注:本文中的com.sun.xml.internal.stream.util.ThreadLocalBufferAllocator.getBufferAllocator方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。