일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jsp
- 웹뷰
- Bootstrap
- MANTIS
- 자바
- Android
- decompiler
- 컬럼명
- Web Service
- MSsql
- asp.net
- varags
- STS
- C#
- 자바스크립트
- MS-SQL
- 웹 서비스
- html
- scrollView
- javascript
- 이클립스
- Eclipse
- Apache Lucene
- TextBox
- Java
- Redirect
- SpringSource Tool Suite
- WebView
- 안드로이드
- Maven
- 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..