Module java.rmi
Package java.rmi.server

Class LogStream

所有已实现的接口:
Closeable, Flushable, Appendable, AutoCloseable

@Deprecated public class LogStream extends PrintStream
Deprecated.
no replacement
LogStream 提供了一个机制,用于记录对系统监控者可能感兴趣的错误。
自版本:
1.1
  • Field Details

    • SILENT

      public static final int SILENT
      Deprecated.
      记录级别常量(无记录)。
      参见:
    • BRIEF

      public static final int BRIEF
      Deprecated.
      记录级别常量(简要记录)。
      参见:
    • VERBOSE

      public static final int VERBOSE
      Deprecated.
      记录级别常量(详细记录)。
      参见:
  • Method Details

    • log

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

      @Deprecated public static PrintStream getDefaultStream()
      Deprecated.
      no replacement
      返回新日志的当前默认流。
      返回:
      默认日志流
      自版本:
      1.1
      参见:
    • setDefaultStream

      @Deprecated public static void setDefaultStream(PrintStream newDefault)
      Deprecated.
      no replacement
      设置新日志的默认流。
      参数:
      newDefault - 新的默认日志流
      自版本:
      1.1
      参见:
    • getOutputStream

      @Deprecated public OutputStream getOutputStream()
      Deprecated.
      no replacement
      返回将此日志的输出发送到的当前流。
      返回:
      此日志的输出流
      自版本:
      1.1
      参见:
    • setOutputStream

      @Deprecated public void setOutputStream(OutputStream out)
      Deprecated.
      no replacement
      设置将此日志的输出发送到的流。
      参数:
      out - 此日志的新输出流
      自版本:
      1.1
      参见:
    • write

      @Deprecated public void write(int b)
      Deprecated.
      no replacement
      向流中写入一个字节数据。如果不是换行符,则将字节附加到内部缓冲区。如果是换行符,则当前缓冲行将以适当的日志信息前缀发送到日志的输出流。
      覆盖:
      write 在类 PrintStream
      参数:
      b - 要写入的字节
      自版本:
      1.1
      参见:
    • write

      @Deprecated public void write(byte[] b, int off, int len)
      Deprecated.
      no replacement
      写入字节数组的子数组。通过写入字节方法传递每个字节。
      覆盖:
      write 在类 PrintStream
      参数:
      b - 一个字节数组
      off - 开始取字节的偏移量
      len - 要写入的字节数
      自版本:
      1.1
      参见:
    • 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