can someone please help me with this:
how do you write java statements that opens a new binary file named binout.txt and assigns a reference to开发者_开发技巧 the connection to binobj.
it would be greatly appreciated
Try
FileOutputStream binobj = new FileOutputStream("binout.txt");
Is this homework/
精彩评论