목록전체 글 (1730)
오늘도 공부
출처 : http://mgmblog.com/2009/02/06/export-an-android-sqlite-db-to-an-xml-file-on-the-sd-card/ Export an Android SQLite db to an XML file on the SD CardFebruary 6th, 2009 in Android, Toolbox | I’m pretty syched about this code. It took some figuring out and some hunting and asking questions on Google’s Android forum. But thanks to the following posts File permissions for world read/write SQLite3 ..
출처 : http://devhome.tistory.com/10 FileChannel은 java.nio.channels.FileChannel 에 존재하는 새로운 io 패키지중의 하나이다.파일 접근적인 속도면에서는 java.io 에서 제공하는 다른 패키지에 비해 성능이 우수하다.아직은 많이 보편적으로 사용하는 패키지가 아니어 많은 자료를 구하지 못해 간단한 파일을 읽는 방법을 소개한다.[ 파일읽기 예제소스 ]view sourceprint?01.import java.io.File;02.import java.io.FileInputStream;03.import java.io.IOException;04.import java.nio.ByteBuffer;05.import java.nio.channels.FileChan..
참고 사항 : http://stackoverflow.com/questions/541966/android-how-do-i-do-a-lazy-load-of-images-in-listview
Multicolumn ListView in Android 출처 : http://www.heikkitoivonen.net/blog/2009/02/15/multicolumn-listview-in-android/ Ever since I started programming on the Android platform, I have been wondering when the SDK would include a ready-made multicolumn ListView (or listbox as it is often called in other frameworks). One could of course construct such a thing by slapping regular ListViews side by side..
제가 프레임표 만들때 어디서 퍼서 올렸는데 그대로 복사해서 올릴게여 히트시 상대방의 상태를 표시한 말이더라고요 비고의 H = 호밍기, B = 바운드기, C = 태그 대응기 히트시, 카운터시의 영문 설명 SBD = 상대가 미끄러져 쓰러짐, 중거리, 느린 낙법 가능 D = 다운, 근~중거리, 낙법 가능 KZD = 무너짐 스턴, 근~중거리, 낙법 불가 FD = 상대가 날아가서 다운, 중거리, 뒤구르기, 스프링 낙법 가능 UFD = 날아가서 머리쪽 엎드린 상태로 다운, 중거리, 낙법 가능 UTD = 머리쪽 엎어진채로 다운, 근거리, 낙법 불가 TKU = 세로로 돌며 공중으로 뜸, 느린 낙법 가능(일부 불가) TKD = 옆으로 돌며 다운, 근거리, 느린 낙법 가능 TKUD = 세로로 돌며 날아가 머리쪽 엎드린 상..
NIO가 무엇일까요? NonBloking Input-Output 입니다. 기존의 일반 IO는 항상 블럭화가 되면서, 처리를 해왓습니다. 블럭화가되면 그블럭이 풀리기전까진 아무것도 수행할수 없지요. 그래서 그것이 큰 단점이기도 하지요.NIO는 JDK 1.4 이전에는 존재 하지 않는 방법론입니다. 그 이후에 생긴 방법론이므로 참고 하시면 되구요.어쨋든 그래서 NIO가 무엇이냐면.. 블럭화(잠수)를 타지않고 작업을 할수있게 해주는 방법론이에요.서버가 존재하고 통신을 할때 메인스레드가 블럭화(잠수)를 타버리면 그 블럭화가 풀리기전까진 아무것도 못하잖아요..?이것은 블럭을 시키지않고서, 누가 들어오던지 자료를 요청하던지 블럭 시키지않고 그냥 무작정 일만 처리시키는것이죠.하나 이상적인 예를 들어볼가요?사장 ..
출처 : http://blog.naver.com/skyadult?Redirect=Log&logNo=20025986907 14. ServerSocketChannel 클래스와 SocketChannel 클래스 이제 실전에 들어가기 전에 ServerSocketChannel 클래스와 SocketChannel 클래스에 대해 먼저 알아보자. 이들은 net패키지의 ServerSocket클래스와 Socket클래스를 채널로서 다루고자 할 때 쓰는 SelectableChannel이다. 이들 네트워크 관련 채널들은 독자적으로 소켓의 역할을 대처하지는 않는다. 대신 소켓 클래스를 내부에 가지고 있으면서 이들의 기능을 채널화하는데 적절히 이용하게 된다. 1> ServerSocketChannel 클래스 ① ServerSocketC..
출처 :http://pppplqqqq.blog.me/100107860575 ProgressBar 설정 styles.xml 파일에 추가 (res/values/styles.xml) drawable 폴더에 progress_large_color.xml 추가
The SequenceInputStream class allows you to concatenate multiple InputStreams. The construction of aSequenceInputStream is different from any other InputStream. A SequenceInputStream constructor uses either a pair of InputStreams or an Enumeration of InputStreams as its argument:SequenceInputStream(InputStream first, InputStream second) SequenceInputStream(Enumeration streamEnum) Operationally, ..
http://ecogeo.tistory.com/278