| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- scrollView
- MS-SQL
- decompiler
- Bootstrap
- 웹 서비스
- STS
- Apache Lucene
- SpringSource Tool Suite
- 자바
- Web Service
- MANTIS
- TextBox
- WebView
- Java
- varags
- Eclipse
- MSsql
- asp.net
- html
- Maven
- Android
- 자바스크립트
- 안드로이드
- 이클립스
- 컬럼명
- javascript
- C#
- Redirect
- 웹뷰
- jsp
- Today
- Total
목록2015/10 (2)
bboks.net™
Every once in a while I run across an SSL Cert with an included password. Although the security is great automating an environment or an Apache restart with required interaction is problematic. Here is an example of the interaction with a password included SSL Cert:---------------------------------------------------------------[root@w2 conf.d]# /etc/init.d/httpd restartStopping httpd: [ OK ]Star..
1. 이미지를 load하는 asynctask 추가 private class DownloadImageTask extends AsyncTask { ImageView bmImage; public DownloadImageTask(ImageView bmImage) { this.bmImage = bmImage; } protected Bitmap doInBackground(String... urls) { String urldisplay = urls[0]; Bitmap mIcon11 = null; try { InputStream in = new java.net.URL(urldisplay).openStream(); mIcon11 = BitmapFactory.decodeStream(in); } catch (Exceptio..