목록Programming (215)
른록노트
function regExp(){ //특수문자 검증 start var str = "2011-12-27"; var regExp = /[\{\}\[\]\/?.,;:|\)*~`!^\-_+@\#$%&\\\=\(\'\"]/gi if(regExp.test(str)){ //특수문자 제거 var t = str.replace(regExp, "") alert("특수문자를 제거했습니다. ==>" + t) }else{ alert("정상적인 문자입니다. ==>" + str) } //특수문자 검증 end } 참고사이트http://cityattack.tistory.com/64http://www.devholic.net/1000238
HashMap param; for(Entry e : param.entrySet()){String key = e.getKey();String value = e.getValue();} ============for each문 이해하기String[] numbers = {"one","two","three"};for(String number : numbers){System.out.println(number);} ==>인자for(뒤 인자를 순서대로 받아서 사용하는놈:배열형태로 있는 데이터){포문} 참고사이트https://stackoverflow.com/questions/14149984/for-each-loop-on-java-hashmap
import java.io.UnsupportedEncodingException; import java.util.Base64; public class Example { public static void main(String[] args) { try { byte[] name = Base64.getEncoder().encode("hello World".getBytes()); byte[] decodedString = Base64.getDecoder().decode(new String(name).getBytes("UTF-8")); System.out.println(new String(decodedString)); } catch (UnsupportedEncodingException e) { // TODO Auto-..
ajax로 페이지 이동하는 방법 post도 같은방식으로 사용가능 => form submit을 이용 jQuery 이용한 Ajax 파일 다운로드http://purunjong.egloos.com/2510155 // Ajax 파일 다운로드 jQuery.download = function(url, data, method){ // url과 data를 입력받음 if( url && data ){ // data 는 string 또는 array/object 를 파라미터로 받는다. data = typeof data == 'string' ? data : jQuery.param(data); // 파라미터를 form의 input으로 만든다. var inputs = ''; jQuery.each(data.split('&'), fun..
startWith: 문자열이 지정한 문자로 시작하는지 판단 같으면 true반환 아니면 false를 반환한다.(대소문자구별) String str = "apple";boolean startsWith = str.startsWith("a");System.out.println("startsWith: " + startsWith);결과값:true endWith:문자열 마지막에 지정한 문자가 있는지를 판단후 있으면 true, 없으면 false를 반환한다.(대소문자구별) String str = "test";boolean endsWith = str.endsWith("t");System.out.println("endsWith: " + endsWith);결과값:true equals:두개의 String에 값만을 비교해서 같으면..
참고사이트http://huskdoll.tistory.com/337
XHTML찾아보기 CSS.fileBox .fileName {display:inline-block;width:190px;height:30px;padding-left:10px;margin-right:5px;line-height:30px;border:1px solid #aaa;background-color:#fff;vertical-align:middle}.fileBox .btn_file {display:inline-block;border:1px solid #000;width:100px;height:30px;font-size:0.8em;line-height:30px;text-align:center;vertical-align:middle}.fileBox input[type="file"] {position:abso..
function bytesToSize(bytes) { var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; if (bytes == 0) return '0 Byte'; var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024))); return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i]; };참고사이트https://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript