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