FileWriter vs FileOutputStream (original) (raw)
This might be old hat to some of you here, but I recently learned a costly (time) lesson.
FileWriter writes out characters in the default character encoding of the machine doing the processing.
FileOutputStream writes in bytes.
If you don't want your output "converted" to the default character encoding of the machine doing the processing, use FileOutputStream.
I'm following this tutorial on the netbeans website for a simpleEE7App. I followed the instructions precisely but got an exception need help. :/…
anyone here?
It seems that you can override a concrete method and make it abstract. I actually came across some code that did this, so I had to check how it…