Java Basics: servlet Implementation Proxy Server function

Source: Internet
Author: User
Tags url decode

Java EE Foundation: servlet implements proxy server functionality.

import java.io.*;
import java.net.*;
import javax.servlet.*;
Import javax.servlet.http.*;
public class Proxy extends HttpServlet
{public void doget (HttpServletRequest request,
HttpServletResponse respon   SE)
throws Servletexception, IOException
{String query = null;
Response.setcontenttype ("text/html");
PrintWriter out = Response.getwriter ();
Query = Request.getparameter ("URL");
if (query = = null)
{response.senderror (httpservletresponse.sc_bad_request,
Missing URL parameter);
Return
}
Try
{query = urldecoder.decode (query);
}
catch (Exception Exception)
{response.senderror (httpservletresponse.sc_bad_request,
URL decode error + Exception);
return;
}
Try
{URL url = new url (query);
  BufferedReader in = new BufferedReader (New
InputStreamReader (Url.openstream ()));
String Line;
while (line = In.readline ())!= null)
Out.println (line);
out. Flush ();
}
catch (IOException exception)
{response.senderror (Httpservletresponse.sc_not_found,
"Exception:" + Exception);
}
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.