com.oreilly.servlet
类 HttpsMessage
java.lang.Object
com.oreilly.servlet.HttpMessage
com.oreilly.servlet.HttpsMessage
public class HttpsMessage
- extends HttpMessage
A class to simplify HTTP/HTTPS client-server communication. It abstracts
the communication into messages, which can be either GET or POST.
It can be used like this:
HttpsMessage msg = new HttpsMessage("https://[some server]");
Properties props = new Properties();
props.put("name", "value");
InputStream in = msg.sendGetMessage(props);
This class extends the HttpMessage class
written by Jason Hunter at servlets.com.
The HttpMessage class can be found in the com.oreilly.servlet
package found at www.servlets.com
For information see http://www.javaworld.com/javatips/jw-javatip96.html
Note this class works with JDK 1.2 or later only.
- 版本:
- 1.0, 2000/05/05
- 作者:
- Matt Towers, Copyright © 2000
|
构造方法摘要 |
HttpsMessage(String szURL)
Constructs a new HttpsMessage that can be used to communicate with the
servlet at the specified URL using HTTPS. |
| 从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HttpsMessage
public HttpsMessage(String szURL)
throws Exception
- Constructs a new HttpsMessage that can be used to communicate with the
servlet at the specified URL using HTTPS.
- 参数:
szURL - the server resource (typically a servlet) with which
to communicate
- 抛出:
Exception
Copyright © 2013. All Rights Reserved.