'Game > Lineage' 카테고리의 다른 글

20160429 3부적  (0) 2016.05.09
20160427 10부적  (0) 2016.05.09
201511 개미2  (0) 2015.12.14
201511 개미1  (0) 2015.12.14
201510 개미  (0) 2015.10.25






















































































'Game > Lineage' 카테고리의 다른 글

20160427 10부적  (0) 2016.05.09
201512 개미  (0) 2015.12.14
201511 개미1  (0) 2015.12.14
201510 개미  (0) 2015.10.25
201509 개미  (0) 2015.09.28























































'Game > Lineage' 카테고리의 다른 글

201512 개미  (0) 2015.12.14
201511 개미2  (0) 2015.12.14
201510 개미  (0) 2015.10.25
201509 개미  (0) 2015.09.28
201508 개미동장  (0) 2015.09.14
$('#create').submit(function() { // catch the form's submit event
    $.ajax({ // create an AJAX call...
        data: $(this).serialize(), // get the form data
        type: $(this).attr('method'), // GET or POST
        url: $(this).attr('action'), // the file to call
        success: function(response) { // on success..
            $('#created').html(response); // update the DIV
        }
    });
    return false; // cancel original event to prevent form submitting
});
<form id=create method=POST action=create.php>
<input type=text name=url>
<input type="submit" value="Create" /> 

<div id=created></div>


eGovFrame 01.실행환경_실습교제(공통기반)


이 문제를 진행하다보면 XMLEmpDAO의 소스에서 Collections부분의 에러를 확인할 수 있다. 

Bound mismatch : the generic method sort(list <t> ) of type collections is not applicable....



이는 콜렉션프레임워크에서 정렬을 할 때 각 원소간 크기를 비교해야하는데 그 기준을 정의하지 않아서 발생하는에러이다. 

이 에러를 해결하기 위해선 객체를 정의할 때 Comparable을 implement 한 뒤 정의 하면 된다.































































'Game > Lineage' 카테고리의 다른 글

201511 개미2  (0) 2015.12.14
201511 개미1  (0) 2015.12.14
201509 개미  (0) 2015.09.28
201508 개미동장  (0) 2015.09.14
201508 개미_3  (0) 2015.08.27






































































'Game > Lineage' 카테고리의 다른 글

201511 개미1  (0) 2015.12.14
201510 개미  (0) 2015.10.25
201508 개미동장  (0) 2015.09.14
201508 개미_3  (0) 2015.08.27
201508 개미_2  (0) 2015.08.27



















'Game > Lineage' 카테고리의 다른 글

201510 개미  (0) 2015.10.25
201509 개미  (0) 2015.09.28
201508 개미_3  (0) 2015.08.27
201508 개미_2  (0) 2015.08.27
201508 개미_1  (0) 2015.08.27
안드로이드 3.0이상부터 메인스레드에서 네트워크관련 작업을 할 수 없지만 임의적으로 해결하는 방법이다.

//Permission StrictMode
if(android.os.Build.VERSION.SDK_INT > 9){

StrictMode.ThreadPolicy policy = 
new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
}













































'Game > Lineage' 카테고리의 다른 글

201509 개미  (0) 2015.09.28
201508 개미동장  (0) 2015.09.14
201508 개미_2  (0) 2015.08.27
201508 개미_1  (0) 2015.08.27
20150801 놀토  (0) 2015.08.05

+ Recent posts