22 Ekim 2019 Salı

LogOutputStream Sınıfı

Giriş
Şu satırı dahil ederiz.
import org.apache.commons.exec.LogOutputStream;
processLine metodu
Açıklaması şöyle.
The implementation parses the incoming data to construct a line and passes the complete line to an user-defined implementation.
Örnek
Şöyle yaparız.
public class CollectingLogOutputStream extends LogOutputStream {
  private final List<String> lines = new LinkedList<String>();
  @Override
  protected void processLine(String line, int level) {
    lines.add(line);
  }   
  public List<String> getLines() {
    return lines;
  }
}

Hiç yorum yok:

Yorum Gönder