0README
上传用户:demmber
上传日期:2007-12-22
资源大小:717k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. This is Version 0.3-3 of the HTTPClient package. The latest version should
  2. always be available at http://www.innovation.ch/java/HTTPClient/ .
  3. Copyright (C) 1996-2001  Ronald Tschal鋜
  4. The HTTPClient is fairly full-featured http client library. It implements
  5. most of the relevant parts of HTTP/1.1, and automatically handles things
  6. like redirections, authorization, and cookies. The functionality can be
  7. easily extended through the use of modules.
  8. Installation:
  9. -------------
  10. Unpacking the .tar.Z or .zip should've created a subdirectory
  11. 'HTTPClient'. Put this directory somewhere in your classpath. If you
  12. haven't done the following already I recommend setting up a main
  13. directory that contains a subdirectory for every java package you
  14. install, and then add this main directory to your classpath - that way
  15. for new packages all you have to do is unpack them into a subdirectory
  16. under that main directory and away you go. Now add a 'import
  17. HTTPClient.*;' statement to each of your files that use any part of the
  18. package and you're set to go.
  19. Alternatively you can put everything into a zip file and add that file
  20. to your CLASSPATH. If your JDK/development-environment supports
  21. compressed zip files and you downloaded the HTTPClient.zip file then
  22. you can just add that file to your CLASSPATH. If you downloaded the
  23. tar file, or if your JDK does not support compressed zip files, then
  24. unpack the HTTPClient and create an uncompressed zip file to put in
  25. the CLASSPATH with something like the following:
  26.   zip -r0 HTTPClient.zip HTTPClient -i '*.class'
  27. Directory Structure:
  28. --------------------
  29.  HTTPClient -- the source and compiled class files
  30.    |
  31.    +-- http --- the http handler (for use with URLConnection)
  32.    |
  33.    +-- shttp -- the shttp handler (for use with URLConnection)
  34.    |
  35.    +-- https -- the https handler (for use with URLConnection)
  36.    |
  37.    +-- alt ---- alternative versions of the core classes
  38.    |    |
  39.    |    +-- HotJava ---- the HotJava specific replacement classes
  40.    |
  41.    +-- doc -- all the documentation
  42.          |
  43.          +-- api ----- all the javadoc generated api docs
  44.          |
  45.          +-- images -- images for the documentation
  46. Use:
  47. ----
  48. See the documentation in the doc subdirectory. The beginning is at
  49. HTTPClient/doc/index.html .
  50. Comments:
  51. ---------
  52. Mail suggestions, comments, bugs, enhancement-requests to:
  53. ronald@innovation.ch
  54.   Have fun,
  55.   Ronald