1. | DataInputStream out of FileInputStream, DataOutputStream out of FileOutputStream | | |
2. | new DataOutputStream(new BufferedOutputStream(new FileOutputStream())) | | |
3. | Create DataOutputStream from FileOutputStream and Write various types of data | | |
4. | Write short type value with DataOutputStream | | |
5. | Write different data types with DataOutputStream | | |
6. | Determine number of bytes written to DataOutputStream | | |
7. | Flush output stream | | |
8. | Write boolean to a file using DataOutputStream | | |
9. | Write byte to a file using DataOutputStream | | |
|
10. | Write char to a file using DataOutputStream | | |
11. | Write double to a file using DataOutputStream | | |
12. | Write float to a file using DataOutputStream | | |
13. | Write int to a file using DataOutputStream | | |
14. | Write long to a file using DataOutputStream | | |
15. | Write short to a file using DataOutputStream | | |
16. | Write String as bytes to a file using DataOutputStream | | |
17. | Write String as characters to a file using DataOutputStream | | |
18. | DataOutputStream and DataInputStream: write and read primitive data type to a file | | |
19. | DataInputStream, DataOutputStream | | |
20. | Provide a debug trace of the stuff thats being written out into the DataOutputStream | | |