需要帮助从 InputStream 读取到引号之前的字节列表。问题是, InputStream 读取字节,我不知道当它到达引号时如何停止读取......我想过这样的事情:
public static List<Byte> getQuoted(InputStream in) throws IOException {
int c;
LinkedList<Byte> myList = new LinkedList<>();
try {
while ((in.read()) != "\"") { ?????
list.add(c)
.....
while 条件是有问题的,当然引号是String
whileint
是意料之中的。