Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Android
- 자바
- 웹뷰
- Maven
- asp.net
- MANTIS
- MS-SQL
- Web Service
- Apache Lucene
- Redirect
- Java
- decompiler
- html
- STS
- WebView
- scrollView
- 웹 서비스
- Bootstrap
- MSsql
- javascript
- Eclipse
- 안드로이드
- varags
- TextBox
- SpringSource Tool Suite
- 자바스크립트
- 컬럼명
- 이클립스
- jsp
- C#
Archives
- Today
- Total
목록전체 글 (286)
bboks.net™
Spring RestTemplate timeout 지정
자바 코드기반 구성 HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(); factory.setReadTimeout(2000); //milliseconds factory.setConnectionTimeout(2000); // milliseconds RestTemplate restTemplate = new RestTemplate(factory); XML 기반 구성 [출처] How to Set HTTP Request Timeouts With Spring RestTemplate
Java
2015. 1. 15. 16:51
자바에서 파일을 복사하는 4가지 방법
1. FileStream private static void copyFileUsingFileStreams(File source, File dest) throws IOException { InputStream input = null; OutputStream output = null; try { input = new FileInputStream(source); output = new FileOutputStream(dest); byte[] buf = new byte[1024]; int bytesRead; while ((bytesRead = input.read(buf)) > 0) { output.write(buf, 0, bytesRead); } } finally { input.close(); output.clo..
Java/Java
2015. 1. 13. 14:14
안드로이드 SVN gen 폴더와 bin 폴더 제외하기
IDE/STS | Eclipse
2014. 12. 26. 18:36