我試圖使用apache wicket創建類似只讀控制檯窗口的東西。 本質上,用戶提交表單以啓動服務器端操作。然後可以跟蹤頁面上的作業輸出。使用wicket更新文本區域
我目前顯示輸出,如下所示:
public class ConsoleExample extends WebPage {
protected boolean refreshing;
private String output = "";
public void setOutput(String newOutput) {
synchronized (this) {
output = newOutput;
}
}
public void appendOutput(String added) {
synchronized (this) {
this.output = output+added;
}
}
public ConsoleExample() {
Form<ConsoleExample> form = new Form<ConsoleExample>("mainform");
add(form);
final TextArea<String> outputArea = new TextArea<String>("output",
new PropertyModel<String>(this, "output"));
outputArea.setOutputMarkupId(true);
// A timer event to add the outputArea to the target, triggering the refresh
outputArea.add(new AbstractAjaxTimerBehavior(Duration.ONE_SECOND){
private static final long serialVersionUID = 1L;
@Override
protected void onTimer(AjaxRequestTarget target) {
synchronized (this) {
if(refreshing){
target.focusComponent(null);
target.addComponent(getComponent());
}
}
}
});
add(outputArea);
form.add(new AjaxSubmitLink("run") {
private static final long serialVersionUID = 1L;
@Override
public void onSubmit(final AjaxRequestTarget target, Form<?> form) {
setOutput("");
new Thread(new Runnable() {
@Override
public void run() {
try {
refreshing = true;
ProcessBuilder pb = new ProcessBuilder(Collections.singletonList("execute"));
pb.redirectErrorStream(true);
String line;
BufferedReader br = new BufferedReader(new InputStreamReader(pb.start().getInputStream()));
while ((line = br.readLine()) != null) {
appendOutput("\n" + line);
}
} catch (IOException e) {
//...
} finally {
//...
refreshing = false;
}
}
}).start();
}
});
}
這種解決方案的問題是每次AjaxTimerBehaviorRuns刷新復位文本區域的屬性,即,光標位置和滾動位置。 因此,隨着輸出的增加,用戶無法跟蹤輸出,因爲textarea會跳回每秒開始。
有沒有更好的方法來實現這一目標?
我認爲你可以添加一個JavaScript函數的行爲,刷新後,滾動文本視圖一路下來。我不知道怎麼做,所以我沒有把它作爲答案。 –