模块  java.rmi
软件包  java.rmi.server

Class LogStream

    • 字段详细信息

      • SILENT

        public static final int SILENT
        Deprecated.
        日志级别常量(无日志记录)。
        另请参见:
        常数字段值
      • BRIEF

        public static final int BRIEF
        Deprecated.
        日志级别常量(简短日志记录)。
        另请参见:
        常数字段值
      • VERBOSE

        public static final int VERBOSE
        Deprecated.
        日志级别常量(详细日志记录)。
        另请参见:
        常数字段值
    • 方法详细信息

      • log

        @Deprecated
        public static LogStream log​(String name)
        Deprecated.
        no replacement
        返回由给定名称标识的LogStream。 如果不存在与“name”对应的日志,则会创建使用默认流的日志。
        参数
        name - 标识所需 name名称
        结果
        与给定名称关联的日志
        从以下版本开始:
        1.1
      • setDefaultStream

        @Deprecated
        public static void setDefaultStream​(PrintStream newDefault)
        Deprecated.
        no replacement
        设置新日志的默认流。
        参数
        newDefault - 新的默认日志流
        从以下版本开始:
        1.1
        另请参见:
        getDefaultStream()
      • setOutputStream

        @Deprecated
        public void setOutputStream​(OutputStream out)
        Deprecated.
        no replacement
        设置发送此日志输出的流。
        参数
        out - 此日志的新输出流
        从以下版本开始:
        1.1
        另请参见:
        getOutputStream()
      • write

        @Deprecated
        public void write​(int b)
        Deprecated.
        no replacement
        将一个字节的数据写入流。 如果它不是换行符,则将该字节附加到内部缓冲区。 如果是换行符,则将当前缓冲的行发送到日志的输出流,并以相应的日志记录信息为前缀。
        重写:
        write在类 PrintStream
        参数
        b - 要写入的字节
        从以下版本开始:
        1.1
        另请参见:
        PrintStream.print(char)PrintStream.println(char)
      • write

        @Deprecated
        public void write​(byte[] b,
                          int off,
                          int len)
        Deprecated.
        no replacement
        写一个字节子数组。 通过写字节方法传递每个。
        重写:
        write在类 PrintStream
        参数
        b - 字节数组
        off - 从中开始取字节的偏移量
        len - 要写入的字节数
        从以下版本开始:
        1.1
        另请参见:
        FilterOutputStream.write(int)
      • toString

        @Deprecated
        public String toString()
        Deprecated.
        no replacement
        返回日志名称作为字符串表示。
        重写:
        toString在类 Object
        结果
        日志名称
        从以下版本开始:
        1.1
      • parseLevel

        @Deprecated
        public static int parseLevel​(String s)
        Deprecated.
        no replacement
        将日志记录级别的字符串名称转换为其内部整数表示形式。
        参数
        s - 记录级别的名称(例如,'SILENT','BRIEF','VERBOSE')
        结果
        对应的整数日志级别
        从以下版本开始:
        1.1