I/O Binary stream
Please support our Java advertiser: Programming Forums
![]() |
•
•
Posts: 2
Reputation:
Solved Threads: 0
Hi.
I've built a HttpServlet that catch a request and parse a web page using InputStream, InputStreamReader and PrintWriter changing some content along the way and output it as a response. Everything works like a charm (parsing html, css, gif, jpg, aso) except for png images.
Since png's are binary files (correct me if I'm wrong) my guess is i need to use something other than InputStream, InputStreamReader and PrintWriter to parse the png's. But what and how do I use it?
Thanks in advance.
I've built a HttpServlet that catch a request and parse a web page using InputStream, InputStreamReader and PrintWriter changing some content along the way and output it as a response. Everything works like a charm (parsing html, css, gif, jpg, aso) except for png images.
Since png's are binary files (correct me if I'm wrong) my guess is i need to use something other than InputStream, InputStreamReader and PrintWriter to parse the png's. But what and how do I use it?
Thanks in advance.
•
•
Posts: 27
Reputation:
Solved Threads: 2
•
•
•
•
Hi.
I've built a HttpServlet that catch a request and parse a web page using InputStream, InputStreamReader and PrintWriter changing some content along the way and output it as a response. Everything works like a charm (parsing html, css, gif, jpg, aso) except for png images.
Since png's are binary files (correct me if I'm wrong) my guess is i need to use something other than InputStream, InputStreamReader and PrintWriter to parse the png's. But what and how do I use it?
Thanks in advance.
Using ByteArrayInputStream to read a bindary file and then use InputStreamReader & BufferedReader. Also careful about "position". These will work.
![]() |
Similar Threads
Other Threads in the Java Forum
- Binary File IO (C#)
- Skip initial 4 bytes in a binary stream (C++)
- spaces in binary file not showing (C++)
- searching and inserting node in a binary search tree (C)
- Reading Binary files via stdin (C++)
Other Threads in the Java Forum
- Previous Thread: working beep method in java.
- Next Thread: java and sqlserver BIG problem??
•
•
•
•
Views: 560 | Replies: 1 | Currently Viewing: 1 (0 members and 1 guests)





Linear Mode