免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2415 | 回复: 2
打印 上一主题 下一主题

救急:在客户端和服务器之间传递cookie 的问题。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-09-05 09:52 |只看该作者 |倒序浏览
由于客户要求,小弟要用 SERVLET 写一个在远程搜索数据库与读者客户端之间的中间层代理程序。
考虑到有的远程数据库登陆时写了 cookie 进行身份和过期验证,所以,我的这个中间层代理程序需要把这些 cookie 接受到。

现在的问题是:我不知道如何把 cookie 回发给对应的读者客户端。
请帮个忙,多谢!

论坛徽章:
0
2 [报告]
发表于 2003-09-05 16:05 |只看该作者

救急:在客户端和服务器之间传递cookie 的问题。


  1. // Changes by: Saar Machtinger, me@cawa.com
  2. import java.net.*;
  3. import java.io.*;
  4. import java.util.*;

  5. class CookiesInJava {
  6. static Hashtable theCookies = new Hashtable();
  7. /**
  8.   * Send the Hashtable (theCookies) as cookies, and write them to the specified URLconnection
  9.   *
  10.   * @param   urlConn  The connection to write the cookies to.
  11.   * @param   printCookies  Print or not the action taken.
  12.   *
  13.   * @return  The urlConn with the all the cookies in it.
  14. */
  15. public URLConnection writeCookies(URLConnection urlConn, boolean printCookies){
  16.    String cookieString = "";
  17.    Enumeration keys = theCookies.keys();
  18.    while (keys.hasMoreElements()) {
  19.      String key = (String)keys.nextElement();
  20.      cookieString += key + "=" + theCookies.get(key);
  21.      if (keys.hasMoreElements())
  22.         cookieString += "; ";
  23.      }
  24.    urlConn.setRequestProperty("Cookie", cookieString);
  25.    if (printCookies)
  26.       System.out.println("Wrote cookies:\n   " + cookieString);
  27.    return urlConn;
  28.    }

  29. /**
  30.   * Read cookies from a specified URLConnection, and insert them to the Hashtable
  31.   *  The hashtable represents the Cookies.
  32.   *
  33.   * @param   urlConn  the connection to read from
  34.   * @param   printCookies  Print the cookies or not, for debugging
  35.   * @param   reset  Clean the Hashtable or not
  36. */
  37. public void readCookies(URLConnection urlConn, boolean printCookies,
  38.                      boolean reset){
  39.    if (reset)
  40.       theCookies.clear();
  41.    int i=1;
  42.    String hdrKey;
  43.    String hdrString;
  44.    String aCookie;
  45.    while ((hdrKey = urlConn.getHeaderFieldKey(i)) != null) {
  46.      if (hdrKey.equals("Set-Cookie")) {
  47.         hdrString = urlConn.getHeaderField(i);
  48.         StringTokenizer st = new StringTokenizer(hdrString,",");
  49.         while (st.hasMoreTokens()) {
  50.           String s = st.nextToken();
  51.           aCookie = s.substring(0, s.indexOf(";"));
  52.           // aCookie = hdrString.substring(0, s.indexOf(";"));
  53.           int j = aCookie.indexOf("=");
  54.           if (j != -1) {
  55.              if (!theCookies.containsKey(aCookie.substring(0, j))){
  56.                // if the Cookie do not already exist then when keep it,
  57.                // you may want to add some logic to update the stored Cookie instead.
  58.                // thanks to rwhelan
  59.                theCookies.put(aCookie.substring(0, j),aCookie.substring(j + 1));
  60.                if (printCookies){
  61.                   System.out.println("Reading Key: " + aCookie.substring(0, j));
  62.                   System.out.println("        Val: " + aCookie.substring(j + 1));
  63.                   }
  64.                }
  65.              }
  66.           }
  67.       }
  68.       i++;
  69.      }
  70.   }

  71. /**
  72.   * Display all the cookies currently in the HashTable
  73.   *
  74. */
  75. public void viewAllCookies() {
  76.    System.out.println("All Cookies are:");
  77.    Enumeration keys = theCookies.keys();
  78.    String key;
  79.    while (keys.hasMoreElements()){
  80.      key = (String)keys.nextElement();
  81.      System.out.println("   " + key + "=" +
  82.      theCookies.get(key));
  83.      }
  84.    }

  85. /**
  86.   * Display the current cookies in the URLConnection, searching for the: "Cookie" header
  87.   *
  88.   * This is Valid only after a writeCookies operation.
  89.   *
  90.   * @param   urlConn  The URL to print the associates cookies in.
  91. */
  92. public void viewURLCookies(URLConnection urlConn) {
  93.    System.out.print("Cookies in this URLConnection are:\n   ");
  94.    System.out.println(urlConn.getRequestProperty("Cookie"));
  95.    }

  96. /**
  97.   * Add a specific cookie, by hand, to the HastTable of the Cookies
  98.   *
  99.   * @param   _key  The Key/Name of the Cookie
  100.   * @param   _val  The Calue of the Cookie
  101.   * @param   printCookies  Print or not the result
  102. */
  103. public void addCookie(String _key, String _val, boolean printCookies){
  104.    if (!theCookies.containsKey(_key)){
  105.       theCookies.put(_key,_val);
  106.       if (printCookies){
  107.          System.out.println("Adding Cookie: ");
  108.          System.out.println("   " + _key + " = " + _val);
  109.          }
  110.       }
  111.    }
  112. }


复制代码

这是我以前找的,感谢原作者和它的出处.

论坛徽章:
0
3 [报告]
发表于 2003-09-05 16:19 |只看该作者

救急:在客户端和服务器之间传递cookie 的问题。

可以参考以下。
多谢了!:)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP