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[] で作成した後に自分の番号を取得しますか?