hi all, i read cookie by next method private String readCookie( HttpConnection conn ) throws IOException { String key; String value; String[] substrs; for(int i = 0;( key = conn.getHeaderFieldKey( i ) ) != null; ++i){ key = key.toLowerCase(); if( key.equals( "set-cookie" ) ){ value = conn.getHeaderField( i ); while( value != null ){ substrs = split( value, ';' ); if( ...