목록개발 (64)
차근차근
//휴대폰 -하이픈 추가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 추가
1. build.gradle(Module: app)에 추가 android{signingConfigs { release { v2SigningEnabled false } } }2. Enable Instant Run to hot swap code/resource changes on deploy(default enbled) 체크 해제 File -> Settings -> Build.Execution,Deplyment -> Instant Run에 위에 위치 3. apk 빌드시 Signature Versins 부분에 v1만 부분체크 후 apk생성 참조 : https://developer.android.com/about/versions/nougat/android-7.0.html#apk_signature_v2 http:..
INSERT INTO cities VALUES ('London'); INSERT INTO cities VALUES ('Paris'); INSERT INTO cities VALUES ('Rome'); SELECT name FROM cities WHERE name RLIKE 'A|B|R'; -- or SELECT name FROM cities WHERE name REGEXP 'A|B|R'; -- or using LIKE SELECT name FROM cities WHERE name LIKE '%A%' OR name LIKE '%B%' OR name LIKE '%R%' nameParisRome SELECT name FROM cities WHERE name RLIKE '^A|^B|^R'; -- or SELECT..