Reputation: 305
Simple question I am trying to import Java.io.* to use
However even when I import them I get the following error:
"The package “java.io.BufferOutputStream” does not exist. You might be missing a library."
What am I missing here?
Upvotes: 0
Views: 210
Reputation: 305
Its cool guys it was a classic FAIL... java typo.
it should be:
import java.io.BufferedOutputStream
Upvotes: 1