// 자바에서 타이머를 설정하는 예제. public class TimerExample { public static void main(String[] args) { Timer timer1 = new Timer(); Timer timer2 = new Timer(); long period1 = 5 * 1000; // 5 seconds long period2 = 3 * 1000; // 3 seconds timer1.schedule(new Task("test1") , 0 , period1); timer2.schedule(new Task("test2") , 0 , period2); } } //////////// 아래는 TimerTask를 확장하는 Task 클래스 public class Task extends Tim..
아래의 소스를 추가 #define _CRTDBG_MAP_ALLOC #include #include 그리고 아래의 소스를 프로그램이 종료될때 입력. _CrtDumpMemoryLeaks(); 디버그 모드일때 #define new DEBUG_NEW 처럼하거나 #define DEBUG_NEW new(__FILE__, __LINE__) #define new DEBUG_NEW 이렇게 넣으면 된다. 디버그 모드일때 해야한다는게 중요. CMemoryState::DumpAllObjectsSince와 CMemoryState::Difference를 이용하는것도 한 방법. BOOL Difference( const CMemoryState& oldState, const CMemoryState& newState ); 이전 상태의 ..
0. 환경 : 이클립스+JAVA 6을 이용해서 코딩한다. - 지금 이 GUI 인터페이스를 만드는 목적은 지속적으로 이벤트(메세지)를 발생시키는 프로그램을 만들기 위한 기본 인터페이스를 구축하기 위함이다. - 함수 설명 안에 있는 링크들은 작동하지 않는다. 1. 시작 프로젝트를 만든다 기본 gui로 사용할 클래스를 만든다. JFrame을 상속받아야한다. class EventFireGui extends JFrame import javax.swing.JFrame; public class EventFireGui extends JFrame { } 실행할 static main을 포함할 클래스를 만든다. (EventFireGui를 써도 된다) public class EventFireStarter { public st..
[매트랩] 유저 인터페이스 만들기 1. File -> New -> Function 2. 기본 figure를 띄우기 function gui( ) figure end gui.m이라는 파일로 저장을 하고, path에 해당 경로를 추가하고 매트랩에서 실행하면. >> gui 그럼 아래와 같은 빈 창이 하나 나온다. 에디터에서 F5를 눌러도 바로 실행이 된다. 이 figure에 설정할 수 있는 것들은 name , menubar , numbertitle, color, units, position 이 있다. 예를 들면, function gui( ) figure('name' , 'Example' , 'numbertitle' , 'off' , 'menubar' , 'figure') end 3. uicontrol 로 개체 ..
java2word로 텍스트 + 이미지 삽입을 쉽게할수 있는지 알아보자. 사이트: http://code.google.com/p/java2word/ 문서 : http://java2word.blogspot.com/p/documentation.html 다운로드 : http://code.google.com/p/java2word/downloads/list 예제 : http://java2word.blogspot.com/p/all-in-one-example.html * 사용하기 편하고 알기도 쉽다. * 예제 페이지에 사용가능한 모든 간단한 예들이 있다. * 스타일을 설정하는게 아주 쉽다. * 이미지를 만드는 예 IDocument myDoc = new Document2004(); // myDoc.setPageOrient..
* 자바로 MS 워드 문서를 동적으로 만들어서 쓸수 있도록 하려고 하는것이 목표. a. 일단 검색을 해보기. 네이버에서 검색하면 그냥 라이브러리 소개만 몇줄있을 뿐이고, 구글에서 찾으니.. http://stackoverflow.com/questions/203174/whats-a-good-java-api-for-creating-word-documents 이런 여러 가지 라이브러리들이 정리되어 괜찮은 질문글이 있다. 여기 나온 라이브러리들을 살펴보자. 1. OpenOffice.org's Universal Network Objects (UNO) http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org_Developers_Gui..
Homepage : http://psychtoolbox.org/HomePage * Requirements : the latest 32 bit version of Matlab. * MacOS : Matlab version R2010b and later will not work /* damn! that's my version */ * Windows : if you use Matlab 7.4 (Release 2007a) or later, you may need to install some MS Visual C runtime libraries. /* now I'm working on Windows-7, Matlab 2011a 32bit */ * To install the tool box you need SVN ..
[자바]BufferedImage 에서 ByteArrayInputStream 로 변환하기 BufferedImage img; ByteArrayOutputStream byos = new ByteArrayOutputStream(); try{ ImageIO.write(img , "jpg" , byos); }catch(Exception e){e.printStackTrace(); }finally{ byos.close(); } ByteArrayInputStream byis = new ByteArrayInputStream(byos.toByteArray()); 끝.
[자바] ODF에서 이미지 삽입하기 0. 이전글과 세팅은 같다 [JAVA] Open Document Format (ODF) 파일 생성하기, ODFDOM 라이브러리 1. 새로 만든 OdfTextDocument를 아래와 같이 코딩한다. OdfTextDocument doc = OdfTextDocument.newTextDocument(); OdfTextParagraph para = (OdfTextParagraph)doc.getContentRoot().newTextPElement(); OdfDrawFrame frame = (OdfDrawFrame)para.newDrawFrameElement(); OdfDrawImage img = (OdfDrawImage)frame.newDrawImageElement(); //각자..
[자바] 프로그램상으로 화면캡쳐하기. GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice[] gs = ge.getScreenDevices(); DisplayMode mode = gs[0].getDisplayMode(); Rectangle bounds = new Rectangle(0, 0, mode.getWidth(), mode.getHeight()); BufferedImage desktop = new BufferedImage(mode.getWidth(), mode.getHeight(), BufferedImage.TYPE_INT_RGB); try { desktop = new Robot(gs[0])..
jOpenDocument는 비어있는 문서를 만드는데 약간 어려움이 있었지만 ODFDOM는 비어있는 문서도 쉽게 생성이 가능하다. 이틀립스 환경에서 진행. 0. odfdom 라이브러리 다운 받기 http://odftoolkit.org/projects/odfdom/pages/Home 여기가서 다운 받기 (jar, binary) 1. 이클립스에 빌드패스 추가하기. Project > Properties > Java build path > Libraries > Add Jars or Add external Jars > 다운 받은 jar 파일 선택 2. 예제대로 따라하기. // Create a text document from a standard template (empty documents within the JA..
자바의 JFrame과 Processing의 PApplet에서 Open document 파일을 생성하는 것을 하려고 하는데 이제부터 하나씩 알아가면서 정리해보려고 합니다. 환경은 Mac, JAVA 6 그리고 이클립스를 기본으로 개발합니다. 0. Open Document Format(ODF)란? * 파일 생성하는 것을 살펴보기 전에 ODF가 무엇인지 살펴보면, ODF는 XML을 기반으로 한 파일 포맷으로 아래의 문서 형식을 지원한다. 괄호 안은 각 파일의 확장자이다. 스프레드 시트 (.ods) 차트, 데이터베이스 (.odb) 프레젠테이션 (.odp) 워드 (.odt) * 보시다시피 MS office에서 사용되는 엑셀, 엑세스, 파워포인트, 워드의 양식을 가지고 있다. ODF는 OASIS(Organizatio..
jQuery 기본 선택 방법 (선택자) The selectors follow the basic format of CSS. You will be able to refer the formats in the site of CSS selectors too. It's also able to use the dependency for the parents of the element just like the CSS. $('div') - selects all the elements that has the tags with , 태그로 선택 $('.classSel') - selects all the elements that has the class 'classSel', 클래스로 선택 $('#idSel') - selects ..
[자바] 배열을 ArrayList나 Vector로 바꾸는 방법 It's quite simple. Use the static function of Arrays class. int[] elements = {1,2,3,4}; Vector myVector = new Vector(Arrays.asList(elements)); Reference : http://docs.oracle.com/javase/6/docs/api/java/util/Arrays.html static List asList(T... a) Returns a fixed-size list backed by the specified array.
간단하다. 터치를 탭쳐하고자하는 ViewController에서 다음의 함수들을 오버라이트하면 된다. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { NSLog(@"Touch begined"); UITouch *touch = [[event allTouches] anyObject]; CGPoint pos = [touch locationInView: [UIApplicationsharedApplication].keyWindow]; NSLog(@"Position of touch: %.3f, %.3f", pos.x, pos.y); } - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)eve..
INTRO 1. This article concludes that _____. The editorial recommends that _____. 2. To support his claim the author points out that ______. The letter also cites a survey in which ________. To justify this conclusion, the author cites _____. 3. However, careful scrutiny/consideration of the argument/evidence/thesefacts reveals + various statistical and other logical problems, which render it unc..
* 류 - 좋아함, 애정 affection 애정, 애착 affinity 좋아함, 서로 잘 맞는 사람[물건] ; 인척 관계, 유사 dote 맹목적으로 사랑하다 fondness 애정, 애착; 맹목적 사랑 - 성향, 경향 inclined 기운, 경사진 ; (… )하는 경향이 있는 penchant 강한 기호, 경향; 편벽되게 좋아하기 predilection 편애, (… 을) 좋아함 proclivity 성향; (… 의) 성벽, 소질, 기질, 경향 propensity 경향, 성향, 성벽, 끄는 힘, 매력, 매혹 attraction (사람, 마음, 흥미를) 끄는 힘, 매력 captivate 마음을 사로잡다, … 을 매혹하다 enamor 반하게 하다, 매혹하다 enchant 넋을 잃게 하다, 마음을 사로잡다 entra..
1. ABHOR (A) greatly admire (B) promise absolutely (C) inspire (D) credit (E) improve 2. ABOMINATE: (A) gratify (B) esteem (C) console (D) support (E) foster 3. AFFINITY: (A) displeasure (B) aversion (C) moroseness (D) bad luck (E) unacceptable behavior 4. AFFINITY: (A) accolade (B) veneration (C) repugnance (D) integrity (E) apathy 5. ANTIPATHY: (A) affection (B) courtesy (C) exasperation (D) o..
◈ Sentence completion 1 Physicists rejected the innovative experimental technique because, althought it --------some problems, it also producted new --------. (A) clarifiled .. date (B) eased .. interpretations (c) resolved .. complications (D) caused .. hypotheses (E) revealed .. inconsistencies The word "because" indicates that the second part of the sentence, where the missing words appear, e..
센컴에서는 중요한 것이 접속사나 관계대명사 등을 보고 앞과 뒤의 단어가 '반의어'가 될지 '동의어'가 될지, 또는 정도 차이가 있는 단어가 될지 등을 판단하는 것이 중요하다. 그러기 위해서는 문장의 유형별로 빈칸에 어떠한 단어들이 올지 미리 어느 정도 예측하면 쉬워진다. 아래가 바로 문자 유형별로 정리해 놓은 자료이다. 외워두자. ------------------------------------------------------------- 1. and 앞과 뒤의 내용은 같은 방향, but 앞과 뒤의 내용은 반대 방향이라야 한다. 반면에, paradoxically, ironically 등과 함께 쓰인,의 and/or 앞 뒤의 내용은 반대방향이다. 또한,에서 or 앞 뒤의 내용도 반대방향이다. 2. colo..
- Total
- Today
- Yesterday
- HTML5
- GX-10
- gae
- c++
- 삼식이
- 뽐뿌
- 샷
- TIP
- 안드로이드
- Javascript
- Android
- google app engine
- Writing
- Python
- 탐론 17-50
- HTML5 튜토리얼
- ny-school
- K100D
- php
- 서울
- java
- 안드로이드 앱 개발 기초
- lecture
- 사진
- mini project
- 팁
- 강좌
- 자바스크립트
- 속깊은 자바스크립트 강좌
- gre
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |