aspose file tools
The moose likes Java in General and the fly likes How to properly use piped streams Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "How to properly use piped streams" Watch "How to properly use piped streams" New topic
Author

How to properly use piped streams

Phil Chuang
Ranch Hand

Joined: Feb 15, 2003
Posts: 251
Here's the skinny:
Say I have a socket client & server running, and I want to add a layer of encryption. I modify the client to encrypt the output, but I don't want to modify the server. So what I'm doing is making a pass-through sort of server that does the decryption for me, then passes the decrypted stuff to the server. This is really a question more about streams than sockets. So what I'm doing in the pass-through is receiving a socket connection from the client, and opening a socket on the server, then decrypting the stream as it passes through. I got some piped stream examples off the internet, but I am failing to get them to work. Anybody here have experience using piped streams, and want to give me a few pointers?
 
 
subject: How to properly use piped streams
 
Threads others viewed
Socket reuse and security
chat
Problem with simple chat app
How to calc bytes written into OutputStream
Bunch of NIO questions
IntelliJ Java IDE