How to recognize doubles like 6.66E6 with StreamTokenizer Class

The StreamTokenizer treats it:TT_NUMBER "6.66" in st.nval, TT_WORD "E" in st.sval and TT_NUMBER "66" in st.nval.How can Java put the entire double in a st.nval?Thanks,Javier.
[230 byte] By [jperojoa] at [2007-10-2 16:49:17]
# 1
I don't think you can do that with StreamTokenizer. You might want to use java.util.Scanner instead.
uncle_alicea at 2007-7-13 18:00:32 > top of Java-index,Java Essentials,Java Programming...
# 2
hello, Have you found they way of reading the E number with the Streamtokenizer?Rosa
gcsacca at 2007-7-13 18:00:32 > top of Java-index,Java Essentials,Java Programming...