목록분류 전체보기 (77)
차근차근
참조: https://www.fun25.co.kr/blog/android-webview-cookie-sync/안드로이드 웹뷰에서 접속한 페이지에서 로그인 또는 쿠키를 저장시 앱을 종료하고 다시 실행시쿠키가 삭제되는 경우가 발생합니다. 이런 경우 아래와 같이 앱과 웹뷰 사이의 쿠키값 싱크를 해 주어야 합니다. @Override protected void onCreate(Bundle savedInstanceState) { ..... if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) { CookieSyncManager.createInstance(this); } } @Override protected void onResume() { super.onResume..
$("#a").get(0).click();
http://www.gurubee.net/article/78941
//휴대폰 -하이픈 추가function phoneFormat(){ var str = $('#phoneFormat').text().trim(); var phone = str.replace(/(^02.{0}|^01.{1}|[0-9]{3})([0-9]+)([0-9]{4})/,"$1-$2-$3"); $('#phoneFormat').text(phone);}
1.Window -> Preferences -> Java ->Code Style -> Formatter 기본 셋팅은 edit눌러도 변경 X 그래서 New를 클릭 새로 만든다. Tap policy를 Spaces Only로 클릭후 Apply 또는 OK 2.Window -> Preferences -> JavaScript ->Code Style -> Formatter 기본 셋팅은 edit눌러도 변경 X 그래서 New를 클릭 새로 만든다. Tap policy를 Spaces Only로 클릭후 Apply 또는 OK 3.Window -> Preferences -> General ->Editors -> Text EditorsInsesrt spaces for tabs 체크Show whitespace characters 체..
server.xml 파일 Connector port="8009" protocol="AJP/1.3" redirectPort="443" /> redirectPort를 443으로 변경 한다. web.xml 파일 Secured /* CONFIDENTIAL 맨 마지막에 web-app 안에 추가한다.
오류 내용:테이블 이름 is marked as crashed and should be repaired 명령어repair table 테이블 이름
덤프mysqldump -u root -p 데이터베이스이름 > 덤프파일이름.sql 임포트 mysql -u root -p 테이터베이스이름 < 덤프파일이름.sql
엑티비티에 아래 소스를 추가한다.mainWebView.setWebChromeClient(new WebChromeClient(){ //웹뷰에 alert창에 url을 제거한다. public boolean onJsAlert(WebView view, String url, String message, final android.webkit.JsResult result) { new AlertDialog.Builder(MainActivity.this) .setTitle("") .setMessage(message) .setPositiveButton(android.R.string.ok, new AlertDialog.OnClickListener() { public void onClick(DialogInterface dial..
return false 추가