将数据放入容器中
要将数据放入 Container 对象中,应使用 Container.put() 方法。
可以将数据作为字符串添加到容器中。 例如:
String custNo = "00054321";
byte[] custRecIn = custNo.getBytes();
custRec.put(custRecIn);
或者:custRec.putString("00054321");