일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 민동현
- 페이스북
- 유희열의라디오천국
- 자바
- 김장훈의who
- 퀄컴
- 사요
- 위피
- 차트쇼쇼쇼
- HSDPA
- 한국의 기획자들
- VoIP
- SWT
- 공정위
- brew
- "명탐정 코난"
- USIM
- Wibro
- 민동현의토요명화
- itmusic
- 라디오
- Java
- 그녀가말했다
- 이지형
- 러시아
- 모던음악만만세
- 김장훈
- EV-DO Rev. B
- ETF
- CDMA
- Today
- Total
목록Java (10)
zyint's blog
자바강좌 숙명대 창병모 교수님 http://cs.sookmyung.ac.kr/~chang/ 자바VM (kaffe포팅정보) http://kelp.or.kr/korweblog/stories.php?story=02/07/06/8694102 임베디드 시스템에서의 자바의 미래 http://www.embedded.com/showArticle.jhtml?articleID=23901606 자바에서의 리얼타임 애플리케이션 http://www.embedded.com/showArticle.jhtml?articleID=188100713 SyD: A middleware infrastructure for mobile iAppliance devices http://www.embedded.com/showArticle.jhtml?ar..
Many operating systems have the concept of a 'system tray', and it's often nice to be able to ofter a 'tray icon' feature for your application. SWT ships with tray icon support in the form of the org.eclipse.swt.widgets.TrayIcon class. Using a tray icon is fairly simple in SWT: image = new Image(display, BalloonExample.class.getResourceAsStream("tray_icon.gif")); // ... Tray tray = display.getSy..
enum Java 1.5 has built-in support for enumerated types. Prior to that you had to kludge them in some way with static final ints (which were not typesafe) or with Objects which would not work in switch statements. Don't confuse enum with the Enumeration interface, an almost obsolete way of iterating over Collections, replaced by Iterator. Java 1.5 enums are references to a fixed set of Objects t..
import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.swt.widgets.TableItem; import org.eclipse.swt.widgets.Text; public class TableClass { public static void main(St..
SWT.BORDER, SWT.CLOSE, SWT.MIN, SWT.MAX, SWT.RESIZE, SWT.TITLE, SWT.NO_TRIM, SWT.SHELL_TRIM, SWT.DIALOG_TRIM, SWT.MODELESS, SWT.PRIMARY_MODAL, SWT.APPLICATION_MODAL, SWT.SYSTEM_MODAL SWT.ON_TOP, SWT.TOOL,
/****************************************************************************** * Copyright (c) 1998, 2004 Jackwind Li Guojie * All right reserved. * * Created on Jan 25, 2004 7:58:06 PM by JACK * $Id$ * * visit: http://www.asprise.com/swt *****************************************************************************/ import org.eclipse.swt.SWT; import org.eclipse.swt.events.MouseEvent; import or..
/* * Create a non-rectangular shell to simulate transparency * * For a list of all SWT example snippets see * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets */ import org.eclipse.swt.SWT; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.Point; ..
1. 자바 스트림 1.1. 배경 어떤 목표 지점에서 데이터를 읽어 들이고, 목표 지점에 기록하는 것을 데이터의 Input, Output 작업이라고 한다. 자바에서 사용하는 Input과 Output작업의 목표 지점은 아주 다양하다. 기본적으로 여러분은 모니터로 입출력하는 것을 배웠다. 가장 많이 사용하는 System.out.println에서 out은 Console 화면에 데이터를 출력하는 것을 담당하고 있다. 그리고 System.in은 키보드의 입력을 담당하고 있다. 곰곰이 생각해보면 데이터를 입력 받고 데이터를 출력하는 작업은 아주 까다로울 것이라고 생각하는데 의외로 여러분은 쉽게 이러한 입출력을 해결하고 있다. 그런데 in, out과 같이 입력과 출력을 도와주는 중간역할을 하는 것이 없다면 어떻게 해야..
자바에서 위 소스코드를 이용해서 조이스틱을 입력장치로 사용할 수 있다. 출처 http://sourceforge.net/projects/javajoystick/
JavaSound API 는 자바 플랫폼에서 audio 재생을 지원하기 위해 만들어졌다. 이 API는 J2SE 1.3 버전에서 처음 추가되었고, wav, au, aiff, midi 오디오 포멧만을 지원한 다. mp3 나 ogg 파일 포멧을 사용하고 싶을때는 어떻게 해야 할까? 이러한 문제점을 해결하기 위해 JavaSound API 에서는 JavaSound Service Provider Interfaces (SPIs) 를 이용한 확장을 지원한다. 이 인터페이스를 통해서, 사용자가 구현하고자 하는 오디오포멧을 지원하면 된다. 이것은 JDBC와 같은 개념이다. DB서버가 각각 다르더라도, JDBC 인터페이스를 통해 통일된 DB프로그래밍을 할수 있는 것과 같은 개념이다. JavaZoom 의 mp3 플러인 * 특..