⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 streamstest.java

📁 一个自然语言处理的Java开源工具包。LingPipe目前已有很丰富的功能
💻 JAVA
字号:
/* * LingPipe v. 3.5 * Copyright (C) 2003-2008 Alias-i * * This program is licensed under the Alias-i Royalty Free License * Version 1 WITHOUT ANY WARRANTY, without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the Alias-i * Royalty Free License Version 1 for more details. * * You should have received a copy of the Alias-i Royalty Free License * Version 1 along with this program; if not, visit * http://alias-i.com/lingpipe/licenses/lingpipe-license-1.txt or contact * Alias-i, Inc. at 181 North 11th Street, Suite 401, Brooklyn, NY 11211, * +1 (718) 290-9170. */package com.aliasi.test.unit.util;import com.aliasi.util.Files;import com.aliasi.util.Streams;import com.aliasi.test.unit.BaseTestCase;import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStream;import java.io.CharArrayReader;import java.io.CharArrayWriter;import java.io.File;import java.io.InputStream;import java.io.IOException;import java.io.OutputStream;import java.io.Reader;import java.io.StringReader;import java.io.Writer;import org.xml.sax.InputSource;public class StreamsTest extends BaseTestCase {    public void testGetDefaultJavaCharset() {        assertNotNull(Streams.getDefaultJavaCharset());    }    public void testCopyReader() throws IOException {        assertCopyReader(new char[] { });        assertCopyReader(new char[] { 'a', 'b', 'c' });        char[] chars = new char[100000];        for (int i = 0; i < chars.length; ++i)            chars[i] = 'a';        assertCopyReader(chars);    }    public void testCopyStream() throws IOException {        assertCopyStream(new byte[] { });        assertCopyStream(new byte[] { (byte)17, (byte)12, (byte)13 });        byte[] bytes = new byte[100000];        for (int i = 0; i < bytes.length; ++i)            bytes[i] = (byte) 12;        assertCopyStream(bytes);    }    public void testCloseInputStream() {        Streams.closeInputStream(null);        DummyInputStream in = new DummyInputStream();        Streams.closeInputStream(in);        assertTrue(in.isClosed());    }    public void testCloseOutputStream() {        Streams.closeOutputStream(null);        DummyOutputStream out = new DummyOutputStream();        assertFalse(out.isClosed());        Streams.closeOutputStream(out);        assertTrue(out.isClosed());    }    public void testCloseReader() {        Streams.closeOutputStream(null);        DummyReader reader = new DummyReader();        assertFalse(reader.isClosed());        Streams.closeReader(reader);        assertTrue(reader.isClosed());    }    public void testCloseWriter() {        Streams.closeWriter(null);        DummyWriter writer = new DummyWriter();        assertFalse(writer.isClosed());        Streams.closeWriter(writer);        assertTrue(writer.isClosed());    }    public void testToCharArray() throws IOException {        String t1 = "SIL-1";        StringReader reader = new StringReader(t1);        InputSource in = new InputSource(reader);        assertEquals(t1,new String(Streams.toCharArray(in)));        byte[] bytes = t1.getBytes();        ByteArrayInputStream bytesIn = new ByteArrayInputStream(bytes);        in = new InputSource(bytesIn);        assertEquals(t1,new String(Streams.toCharArray(in)));        bytes = t1.getBytes("UTF-16");        bytesIn = new ByteArrayInputStream(bytes);        in = new InputSource(bytesIn);        in.setEncoding("UTF-16");        assertEquals(t1,new String(Streams.toCharArray(in)));        File tempFile = Files.createTempFile("LingPipe_StreamsTest");        Files.writeStringToFile(t1,tempFile);        String urlName = Files.fileToURLName(tempFile);        in = new InputSource(urlName);        assertEquals(t1,new String(Streams.toCharArray(in)));        Files.writeStringToFile(t1,tempFile,"UTF-16");        in = new InputSource(urlName);        in.setEncoding("UTF-16");        assertEquals(t1,new String(Streams.toCharArray(in)));    }    private void assertCopyReader(char[] chars) throws IOException {        CharArrayReader reader = new CharArrayReader(chars);        CharArrayWriter writer = new CharArrayWriter();        Streams.copy(reader,writer);        assertEqualsArray(chars,writer.toCharArray());    }    private void assertCopyStream(byte[] bytes) throws IOException {        ByteArrayInputStream in = new ByteArrayInputStream(bytes);        ByteArrayOutputStream out = new ByteArrayOutputStream();        Streams.copy(in,out);        assertEqualsArray(bytes,out.toByteArray());    }    private static class DummyOutputStream extends OutputStream {        private boolean mIsClosed = false;        public void write(int c) throws IOException {            /* do nothing */        }        public void close() {            mIsClosed=true;        }        public boolean isClosed() {            return mIsClosed;        }    }    private static class DummyInputStream extends InputStream {        private boolean mIsClosed = false;        public int read() throws IOException {            return -1;        }        public void close() {            mIsClosed=true;        }        public boolean isClosed() {            return mIsClosed;        }    }    private static class DummyReader extends Reader {        private boolean mIsClosed = false;        public int read(char[] chars, int offset, int length) {            return -1;        }        public void close() {            mIsClosed=true;        }        public boolean isClosed() {            return mIsClosed;        }    }    private static class DummyWriter extends Writer {        private boolean mIsClosed = false;        public void write(char[] chars, int offset, int length) {            /* do nothing */        }        public void close() {            mIsClosed=true;        }        public void flush() {            /* do nothing */        }        public boolean isClosed() {            return mIsClosed;        }    }}

⌨️ 快捷键说明

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