분류 전체보기 575

String 이 List안에 있는지 확인하는 Utility

String 이 List안에 있는지 확인하는 Utility apache common collections 의 CollectionUtils 이용하는 방법을 소개 합니다. 3가지 많이쓰는 매칭 방법을 이용하도록 하였습니다. :) import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections.Predicate; /** * List안에 checkString 이 있는지 확인, * * @param list * @param checkString * @param checkMethod -1: startsWidth, 0: equals , 1: endsWith * @return */ public static boolean..

프로그램/java 2014.04.22

mongodb Select 및 Array Print - study 002

mongodb 두번째... 테스트 입니다.주로 문서의 생성과 select 부분입니다... mysql로 치자면 offset, limit 부분이 skip, limit 로 사용됩니다. > db.mydb.insert({name:'mulder', age:10});> show dbs; // show dbs명령으로 현재 db의스키마 를 볼수 있습니다.local(empty)mydb0.203125GBtest0.203125GB> show collections;mydbsystem.indexes> > db.mydb.find();{ "_id" : ObjectId("5327b40e45fb223e46f90dbf"), "name" : "mulder", "age" : 10 }> db.mydb.insert({name:'scully', ..

프로그램/nosql 2014.03.18

Mongodb First Example (CRUD) ---- my study code 001

Mongo DB에 관심을 많이 가지고 있으나.. 게으름으로 이제야 조금씩 맛을 보고 있습니다.아래는 왕초보!!! 입장에서 변수사용및 insert/update/delete/search 에 관한 짧은 예제 입니다. ~$ mongo MongoDB shell version: 2.2.3 connecting to: test > a=5; // 아시는 것과 같이 javascript를 사용하듯 변수를 사용 할 수 있습니다. 5 > b=5; 5 > var k = { id: 'mulder' }; // test> print(k.id); // 변수의 reference도 javascript object사용과 같다. mulder > for(i=0; i for(i=0; i var a={name:'mulder', age:18}; //..

프로그램/nosql 2014.03.18

dos에서 linux command 사용 - doskey and ls ll

요즘 맥북사용자가 많이 늘고 있는것 같습니다... 물론 윈도를 버릴수는 없죠, 그러다 보니 도스창에서 많이들 ls 를 입력 하곤 합니다.... 돌아오는 답변이야,,,, 알수 없다죠.. - 매너없는 답변... 그래서 아래와 같이 처리하면 어느정도 도스의 매너없는 답변을 피할 수 있습니다.c:\Users\your-name\autorun.bat@ECHO OFFdoskey ls=dir /b $*doskey ll=dir $*doskey cat=type $*doskey ..=cd..doskey grep=find "$1" $2doskey mv=ren $*doskey rm=del $* regedit :Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\M..

편하게 살자 2014.03.03

sqlserver : Get Table and Index storage size in sql server

sqlserver 에서 각 테이블이 어느정도 차지 하고 있는지를 알오보기 ...Get Table and Index storage size in sql serverhttp://stackoverflow.com/questions/15896564/get-table-and-index-storage-size-in-sql-server select * from (SELECT t.NAME AS TableName,p.rows AS RowCounts,SUM(a.total_pages) * 8 AS TotalSpaceKB, SUM(a.used_pages) * 8 AS UsedSpaceKB, (SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKBFROM sys.tables ..

jQuery Ajax json Post

data post를 http body에 직접 하는 방법이 있다... 흔히 json post라고 하는데, 아래와 같이 처리 하면 된다. Ajax Post Json Example)Client Side) $.ajax({ url: '', type: 'post', accept: 'application/json', contentType: 'application/json; charset=utf-8', data: JSON.stringify({'list': savedData}), dataType: 'json', success: function(data) { // success handle }, error: function(jqXHR,textStatus,errorThrown) { // fail handle } }); Se..

프로그램/spring 2014.02.19

jQuery Select , Option Example

Query select 선택 값 확인하기 : from http://lanian.tistory.com/356 from 분류없음 jQuery로 선택된 값 읽기 $("#select_box option:selected").val(); $("select[name=name]").val(); jQuery로 선택된 내용 읽기 $("#select_box option:selected").text(); 선택된 위치 var index = $("#test option").index($("#test option:selected")); ------------------------------------------------------------------- // Add options to the end of a select $("#..

프로그램/jQuery 2014.02.19