Example usage for org.apache.commons.httpclient Cookie toString

List of usage examples for org.apache.commons.httpclient Cookie toString

Introduction

In this page you can find the example usage for org.apache.commons.httpclient Cookie toString.

Prototype

public String toString() 

Source Link

Usage

From source file:zz.pseas.ghost.utils.HttpClinetUtil.java

public static String getCookie() {
    Cookie[] cookies = hc.getState().getCookies();
    String tmpcookies = "";
    for (Cookie c : cookies) {
        tmpcookies += c.toString() + ";";
    }/*from  ww w  .  j a  va2s.c o m*/
    return tmpcookies;
}