일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SSL
- xPlatform
- mapreduce
- Java
- SQL
- vaadin
- Sqoop
- Spring
- IntelliJ
- NPM
- es6
- JavaScript
- 공정능력
- Kotlin
- 보조정렬
- Express
- Python
- GIT
- mybatis
- Eclipse
- MSSQL
- react
- hadoop
- Android
- window
- plugin
- SPC
- tomcat
- R
- table
- Today
- Total
목록전체 글 (659)
DBILITY
퍼미션은 없어도 되는 것 같은데SharedPreferences sharedPreferences = getSharedPreferences("FIRST_LAUNCH", Context.MODE_PRIVATE);if (sharedPreferences.getBoolean("FIRST_LAUNCH", true)) { sharedPreferences.edit().putBoolean("FIRST_LAUNCH", false).commit(); if (ShortcutManagerCompat.isRequestPinShortcutSupported(this)) { ShortcutInfoCompat shortcutInfoCompat = new ShortcutInfoCompat.Builder(this, "#..
Retrofit2로 작성된 것 테스트 해보려고 spring web으로 작성된 localhost에 Rest API를 호출하는데,Failed to connect to localhost/127.0.0.1:8080localhost:8080127.0.0.1:8080둘다 접근이 안된다. 물론 웹브라우저에선 잘된다. 그렇다는건 음...에뮬레이터라 그런가..dev doc에는 다음과 같다.네트워크 주소 공간에뮬레이터의 각 인스턴스는 가상 라우터나 방화벽 서비스 뒤에서 실행되어 개발 머신 네트워크 인터페이스 및 설정과 인터넷에서 분리됩니다. 에뮬레이션된 기기는 네트워크에서 개발 머신이나 다른 에뮬레이터 인스턴스를 감지할 수 없습니다. 이더넷을 통해 라우터나 방화벽에 연결되었다는 것만 감지합니다.각 인스턴스의 가상 라우터는..
public class DataStore { private final String TAG = DataStore.class.getSimpleName(); private DataStore() { Log.e(TAG, "Init"); } public static DataStore getInstance() { return LazyDataStore.instance; } private static class LazyDataStore { private static final DataStore instance = new DataStore(); } }
switch에서 case R.id.식별자 하면 오류가 남. R.id가 final이 아니라 그렇다고 gradle 8.0부터 그렇게 되었다고 하니 gradle.properties에 추가 android.nonFinalResIds=false