Notice
Recent Posts
Recent Comments
Link
투케이2K
414. (kotlin/코틀린) [유틸 파일] setCookieRemove : 쿠키 매니저 데이터 삭제 수행 - CookieManager 본문
Kotlin
414. (kotlin/코틀린) [유틸 파일] setCookieRemove : 쿠키 매니저 데이터 삭제 수행 - CookieManager
투케이2K 2023. 9. 10. 18:58[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [VOID] setCookieRemove : 쿠키 매니저 데이터 삭제 수행
// -----------------------------------------------------------------------------------------
fun setCookieRemove(mContext: Context) {
/**
* // -----------------------------------------
* [setCookieRemove 메소드 설명]
* // -----------------------------------------
* 1. 쿠키 매니저 데이터 삭제 수행
* // -----------------------------------------
* 2. 호출 방식 :
*
* C_App.setCookieRemove(A_Intro@this)
*
* // -----------------------------------------
*/
// [로직 처리 실시]
try {
// -----------------------------------------
// TODO [쿠키 및 세션 관리를 위한 쿠키 매니저 선언]
// -----------------------------------------
val cookieManager = CookieManager.getInstance()
// -----------------------------------------
// -----------------------------------------
// TODO [쿠키 및 세션 삭제 수행 실시]
// -----------------------------------------
cookieManager.removeSessionCookies { aBoolean ->
S_Log._D_(S_FinalMsg.LOG_Remove_Run, arrayOf("removeSessionCookies :: $aBoolean"))
}
cookieManager.removeAllCookies { aBoolean ->
S_Log._D_(S_FinalMsg.LOG_Remove_Run, arrayOf("removeAllCookies :: $aBoolean"))
}
CookieManager.getInstance().flush()
} catch (e: Exception) {
S_Log._printStackTrace_(mContext, S_FinalMsg.LOG_BUG_STATE, null, e)
}
// [로그 출력 실시]
///*
// ===============================================================
S_Log._D_("쿠키 매니저 데이터 삭제 수행", null)
// ===============================================================
// */
}
반응형
'Kotlin' 카테고리의 다른 글
Comments