如何获取STDOUT并以HTML格式显示它

时间:2016-08-26 13:37:22

标签: javascript html node.js shell

我有这个代码,它应该生成一个子进程。我想将信息(stdout)发送到html标签以显示它。我怎么能这样做?到目前为止,这是我的代码:

@org.junit.Test
public void test() throws Exception{

    boolean[] m = {true, false, true, true};
    String binary = "";

    for(boolean b : m) binary += b ? 1 : 0;

    String hex = Integer.toHexString(Integer.parseInt(binary, 2));

    System.out.println(hex);
}

0 个答案:

没有答案