Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자바
- MS-SQL
- html
- Bootstrap
- Eclipse
- 안드로이드
- Web Service
- STS
- scrollView
- 웹 서비스
- TextBox
- asp.net
- Redirect
- MANTIS
- C#
- 이클립스
- 자바스크립트
- varags
- jsp
- javascript
- WebView
- Maven
- Apache Lucene
- 컬럼명
- Java
- Android
- SpringSource Tool Suite
- 웹뷰
- decompiler
- MSsql
Archives
- Today
- Total
bboks.net™
Android WebView에 세션(쿠키) 공유하기 본문
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_user_report); WebViwe webView = (WebView) findViewById(R.id.webview); CookieSyncManager.createInstance(this); cookieManager = CookieManager.getInstance(); CookieSyncManager.getInstance().startSync(); //도메인 url, 쿠키 cookieManager.setCookie("user domain url", "cookie value"); }