simple-shared-preferencessimple uses shared-preferences support generic and rxjava for andoirdInitializepublic class DemoApplication extends Application { @Override protected void onCreate() { super.onCreate(savedInstanceState); // apply default shared preferences file name. SimpleSharedPreferences.initialize(this); // apply custom shared preferences file name. SimpleSharedPreferences.initialize..
SimpleLogYou can use easily Log.DemoExamplepublic class DemoActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if(BuildConfig.DEBUG){ Logging.isRunning = true; }else{ Logging.isRunning = false; } /** * print form : * class name : method name, line */ Logging.i(); /** * print form : * class name : method name, line, comme..
MyMethod(int a, int b=0) MyMethod(); // ErrorMyMethod(1) // a=1, b=0MyMethod(1,2) // a=1, b=2 MyMethod(int b=0, int a) MyMethod(); // ErrorMyMethod(1) // a=1, b=0// b=1, a=?MyMethod(1,2) // b=1, a=2 문법적으로 편의를 위해서, 선택적 매개 변수를 오른쪽으로 모은다. 구현 상에서 보면, 매개변수들은 스택에 하나씩 순서대로 들어간다. C#이나 Java, C++ 에서는 왼쪽 매개 변수부터 스택에 들어간다. (C는 오른쪽 매개변수부터 스택에 들어간다.) 만일 앞에서 선택적 매개변수가 있으면 넣을 수 없는 경우가 생긴다.
지정한 프로세스를 종료하는 방법입니다. Colored By Color Scripter™1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public class ProcessKill{ public static void main(String arg[]) { try { Runtime.getRuntime().exec("taskkill /F /IM 종료할프로세스 네임"); } catch (IOException e) { e.printStackTrace(); } } }
문자열을 나누어야 할때가 있습니다.이메일의 아이디와 도메인을 나누어야 하는 경우가 그 예 입니다.그럴때는 indexOf 와 substring 을 활용하시면 됩니다. 1234567891011121314151617181920public class { public static void main(String arg[]) { String email = "test@test.com"; String id; String domain; // 변수 email이 포함하고있는 @ 의 인덱스 값을 index 에 대입. int index= email.indexOf("@"); // 변수 email의 0번째 index부터 index까지 추출하여 id 에 대입. id = email.substring(0.i); // 변수 email의 i..
- Total
- Today
- Yesterday
- 맛집
- 페북 맛집
- 부산 맛집
- Tistory
- 오뎅나베 맛집
- 인스타 맛집
- 야키토리 맛집
- 티스토리
- 제주도가볼만한곳
- 오뎅탕 맛집
- Tistory 초대장
- 한우
- Android
- 초대장
- Java
- 로그 라이브러리
- 노는바다
- 레오폴드
- 부산맛집
- 페이스북 맛집
- 안드로이드 라이브러리
- 부경대 맛집
- 티스토리 초대장
- 경성대 꽃집
- 남천동 맛집
- 부산
- 소설담
- 제주도여행
- 야키토리 전문점
- Surface Precision Mouse
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |