我想在 Byte[] 中创建后检索一个基本数字
public static void main(String[] args) throws IOException {
LinkedList<Byte> s1 = new LinkedList<Byte>();
String a = "0.111112345";
for (byte bb : a.getBytes()) {
s1.add(bb);
}
//how to retrieve "0.111112345"; from s1 ?
}
在 Byte[] 中取得我的号码后检索我的号码?