byte[] bytes = "我是中国人".getBytes();
os1.write(bytes);
os1.flush();
os1.write("\n".getBytes());
byte[] bytes1 ={'2','3','a'};
os1.write(bytes1);
os1.flush();
os1.write("\n".getBytes());
请问为什么第一个字节数组需要getBytes()方法编码后才能输出,第二个字节数组则不需要呢,是因为第一个是字符串,第二个是字符吗?