![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Android™) Example: Http.ClearInMemoryCookies methodDemonstrates how to call the ClearInMemoryCookies method. Note: This example requires Chilkat v11.1.0 or greater.
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); CkHttp http = new CkHttp(); // Save received cookies to an in-memory cache. http.put_CookieDir("memory"); http.put_SaveCookies(true); // Indicate that saved cookies should be sent on subsequent requests (where the cookie's attributes match the request) http.put_SendCookies(true); String html = http.quickGetStr("https://www.paypal.com/"); // Examine the cookies cached for the domain paypal.com String xmlStr = http.getCookieXml("paypal.com"); Log.i(TAG, xmlStr); // Sample output: // <?xml version="1.0" encoding="utf-8"?> // <cookies> // <cookie key="/,/,$x-enc" v="0" maxAge="1800"> // <x-enc>URI_ENCODING</x-enc> // </cookie> // <cookie key=".paypal.com,/,LANG" v="0" expire="Fri, 15 Aug 2025 23:42:44 GMT" maxAge="31556000" secure="yes"> // <LANG>en_US%3BUS</LANG> // </cookie> // <cookie key="paypal.com,/,ts" v="0" expire="Mon, 14 Aug 2028 14:56:50 GMT" secure="yes"> // <ts>vreXpYrS%3D1848964208%26vteXpYrS%3D1755271608%26vr%3Dae3bc3371987669703182e1efffffffe%26vt%3Dae3bc337198369703182e1efffffffd%26vtyp%3Dnew</ts> // </cookie> // <cookie key="paypal.com,/,ts_c" v="0" expire="Mon, 14 Aug 2028 14:56:50 GMT" secure="yes"> // <ts_c>vr%3Dae3bc3371987365703182e1efffffffe%26vt%3Dae3bc337198759703182e1efffffffd</ts_c> // </cookie> // </cookies> // Clear the in-memory cookies. http.ClearInMemoryCookies(); // The cached cookies should not be present. xmlStr = http.getCookieXml("paypal.com"); Log.i(TAG, "After calling ClearInMemoryCookies..."); Log.i(TAG, xmlStr); Log.i(TAG, "----"); } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.