Giriş
Şu satırı dahil ederiz.
Açıklaması şöyle.
Şöyle yaparız.
Şu satırı dahil ederiz.
import org.apache.commons.exec.LogOutputStream;
processLine metoduAçıklaması şöyle.
ÖrnekThe implementation parses the incoming data to construct a line and passes the complete line to an user-defined implementation.
Şö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