我有这个代码,它应该生成一个子进程。我想将信息(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);
}