2011-06-03から1日間の記事一覧

AndroidのCookieManager::setCookieについて

複数のクッキーをセットしたくて、こんな感じでやっていたけど String Cookie1 = "cookie1"; String Cookie2 = "cookie2"; StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("COOKIE1=" + Cookie1 + "; "); stringBuilder.append("…