ESL内部实现

ESL (Enterprise Standard Loader)

阅读全文

io包中的常用工具类

StreamTokenizer, RandomAccessFile

1. StreamTokenizer & StringTokenizer

两个分词器,StreamTokenizer 通过构建分词表,对流数据进行解析。StringTokenizer 的实现则更为简洁,约定一个分隔符(delimiter),对文本文件进行解析。

阅读全文

Reader & Writer

Reader & Writer

Reader

    阅读全文

    可打印流

    PrintStream

    这个流类提供了大量 print 类方法,用来将数据以 字符串 形式打印出来。注意这里的打印:

    阅读全文

    OutputStream

    OutputStream

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    public abstract class OutputStream implements Closeable, Flushable{

    // 向流中写入 b 低8位字节,高 24 位字节被丢弃。
    public abstract void write(int b) throws IOException;

    // 将缓存的字节全部写入底层的流中。
    public void flush() throws IOException {
    }

    // 关闭流
    public void close() throws IOException {
    }

    // ...
    }

    阅读全文

    centos6.5安装CDH5.5.1

    安装并配置系统

    安装系统

    系统使用 centos6.5 64位

    阅读全文

    虚拟机连接win7回环网卡

    场景

    在 VirtualBox 中安装的虚拟机 centos7,设置网卡,模式是桥连。可以共享物理机的网络,但是当 host 主机 win7 在,没有连接任何网络的时候。 虚拟机 centos7 是不会分配ip地址的。所以 此时 host win7 没法和 虚拟机 centos7 进行 ssh 连接。

    阅读全文

    centos7在vm中扩展容量

    参考:

    VirtualBox虚拟机增加Centos根目录容量

    按照上面的步骤一步一步进行即可,但是,如果是centos7系统,则最后一步非常重要的刷新逻辑分区的步骤,有变化。在原文章中是:

    1
    resize2fs /dev/centos/root

    阅读全文

    java字符集

    我们在java文件中写的代码的所有字符都是字符串。例如:

    1
    2
    int ia = 123;
    String str = new String("你好");

    阅读全文

    IO-FilterInputStream

    A FilterInputStream contains some other input stream, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.

    阅读全文