I mean to open 2 connections at the same jsp page.
cos I try to re-use the parameters that I post from another files and repost to different server in order to get another contents. Thanks. I made it works already.

---
URL url = new URL ("url1");
HttpURLConnection urlConn=(HttpURLConnection) url.openConnection();
URL url2 = new URL ("url2");
HttpURLConnection urlConn2=(HttpURLConnection) url2.openConnection();