我正在尝试使用apache 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();
        }
    });
}


该解决方案的问题在于,每次AjaxTimerBehaviorRun刷新时,都会重置文本区域属性,即光标位置和滚动位置。
因此,随着输出增加,用户无法跟踪输出,因为文本区域跳回以每秒开始。

有没有更好的方法来实现这一目标?

最佳答案

一种可能的易于实现的方法是添加一个隐藏的TextField,然后使用AjaxTimerBehavior更新throw AJAX,然后调用JavaScript函数(使用AjaxRequestTarget.appendJavaScript()),该函数将隐藏的TextField的值与您的。

关于java - 用 wicket 更新文本区域,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10503388/

10-13 00:02