달력

52024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
Posted by dewlit
|

출처 : http://blog.simplism.kr/?p=1982


$ sudo apt-get remove --purge libapache2-mod-php5
$ sudo apt-get install libapache2-mod-php5
$ sudo service apache2 restart



Posted by dewlit
|

11.04 has reached its end of life --

11.10 is the LTR. 

if you wish to continue using 11.04 

edit your /etc/apt/sources.list 

to use old-releases

http://askubuntu.com/questions/10147...end-of-support


출처 : http://ubuntuforums.org/showthread.php?t=2104335


Edit /etc/apt/sources.list and change 'archive.ubuntu.com' to 'old-releases.ubuntu.com'


출처 : http://askubuntu.com/questions/101479/are-existing-updates-available-after-end-of-support


한마디로

11.04 버전 source.list에서 apt-get 파일들을 엉뚱한 곳에서 찾음 -> old-releases 로 바꿔주니 잘 찾음



Posted by dewlit
|

1. List로 받을 경우

ArrayList<Lecture> lectureList = new ArrayList<Lecture>();

Lecture tmpLecture;

Gson gson = new Gson();

Type type = new TypeToken<ArrayLecture>() {

}.getType();

ArrayLecture jonResultlecturelist = (ArrayLecture) gson

.fromJson(sHtml, type);

lectureList = jonResultlecturelist.getLectures();


2. 한 객체로 받을 경우

 2.1

Lecture tmpLecture;

FreemindGson myGson = new FreemindGson();

tmpLecture = (Lecture) myGson.fromJson(sHtml, "Lecture");

2.2

 위 List로 받을 경우에서 type를 한 객체로 하면 됨

'자바' 카테고리의 다른 글

Eclipse 배경색 background 복구 색 변경 default  (0) 2014.05.02
gwt may need recompiled  (0) 2013.02.13
자바 url 파일 받기  (0) 2012.08.22
Posted by dewlit
|

1. XMLHttpRequest() 이용해서

var request = new XMLHttpRequest();

request.onreadystatechange = function() {

if (request.readyState == 4 && request.status == 200) {

alert(request.responseText);}

}

request.open("GET", "http://localhost//test.txt");

request.send();


2. ajax 이용해서

<script src="jquery.js"></script>

$.ajax({

url : "http://localhost/mind/src/test.txt",

}).done(function(data) {

alert(data);

});


어디서 보긴 했는데 출처 기억이..ㅜㅜ

Posted by dewlit
|

기본적으로 bootstrap.js 에 모든 함수가 다 있다. 그러나 함수가 작동하지 않을 경우

jquery.js 도 참조해야 한다.

그리고 순서도

<script src="bootstrap/js/jquery.js"></script>

<script src="bootstrap/js/bootstrap.js"></script>

이런 식으로 jquery 먼저 참조해야 한다.



Posted by dewlit
|

gwt may need recompiled

자바 2013. 2. 13. 16:31

구글 웹 툴킷이 설치되어 있지 않아서 발생하는 것이고, plugin 설치 후

프로젝트 우클릭 Google -> GWT Compile 하면 실행 될것이다.



'자바' 카테고리의 다른 글

Eclipse 배경색 background 복구 색 변경 default  (0) 2014.05.02
Gson 받기 사용 방법 두 가지  (0) 2013.06.05
자바 url 파일 받기  (0) 2012.08.22
Posted by dewlit
|

Opencv 사용할 때 보여줄 Window 창 보다 IplImage를 만들때 이미지의 크기가 크면 나는 에러이다.

Posted by dewlit
|

프로젝트 속성에 들어가서

일반 속성에서

공용 언어 런타임 지원 선택 칸에서 지원 안함으로 해야 함.

^^



Posted by dewlit
|


작품요약서.pdf


학교 선배의 권유로 삼성소프트웨어멤버십(SSM)을 준비하기로 하였다.


서류는 붙었고 기술 면접은 1월 9일날 보았다.


최종 합격 발표가 1월 17일날이다.


멤버십을 준비하면서 많은 도움이 되었던 것 같고 


멤버십 준비하는 분들에게 도움이 되고자 후기를 남긴다.


먼저 작품 요약서는 첨부해 놓았고


기술 면접때 질문으로


1. extern을 설명하시오

2. static을 설명하시오

3. 세션과 쿠기의 차이는?

4. xml과 json의 차이는?

5. github에 대해서 init과 기본 리파지토리, 베어리파지토리?(기본과는 다른 리파지토리가 있나보다)의 차이는?

6. git과 svn의 차이는?

7. 자바의 가비지컬렉션의 장,단점

8. 오버로딩과 오버라이딩 차이

기억나는건 이정도 였으며 프로젝트에 대해 질문도 꽤 있었다.

기술적으로 어려웠던 부분이나 오래 걸렸던 부분 등


기술 면접때 하드웨어 부분도 같이 면접을 보므로 다른 지원자의 하드웨어를 보면서 겁먹을 필요는 없다.

소프트웨어부분은 휴대폰 하나면 충분하다.

아무튼 좋은 경험이 된거 같고

17일 이후, 합격하게 되면 댓글을 달도록 하겠다.


다들 힘내시길^^




Posted by dewlit
|