일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C#
- 이클립스
- html
- 자바
- varags
- scrollView
- TextBox
- Redirect
- 안드로이드
- Web Service
- 웹 서비스
- MS-SQL
- MANTIS
- jsp
- STS
- Eclipse
- decompiler
- javascript
- Maven
- WebView
- Java
- Apache Lucene
- 웹뷰
- Android
- Bootstrap
- 자바스크립트
- MSsql
- SpringSource Tool Suite
- asp.net
- 컬럼명
- Today
- Total
목록Java/Java (36)
bboks.net™
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..
아파치의 RandomStringUtils 사용 import org.apache.commons.lang.RandomStringUtils; public class RandomStringUtilsTest { int length = 10; String randomString = RandomStringUtils.random(length, true, true); System.out.println(randomString); } Maven Repositoryhttp://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.3.2 org.apache.commons commons-lang3 3.3.2 [출처] 자바 (Java)에서 랜덤 (Random) 문자열 (St..
import java.util.regex.Pattern; String emailPattern = "^[_a-z0-9-]+(.[_a-z0-9-]+)*@(?:\\w+\\.)+\\w+$"; Pattern.matches(emailPattern, email); [출처] email 체크 정규식*Java
※ 해당 포스트는 파일 저장이 아닌 메모리에 올려 읽어 들이는 작업을 수행 1. Dependency 추가commons-fileuploadcommons-io 2. web form 설정 3.Dispetcher Servlet 설정 4. Controller 작성RequestParam의 value는 웹 폼에서 설정한 name과 동일해야 함 @RequestMapping(value = "/fileUpload", method = "RequestMethod.POST") public void fileUpload(@RequestParam(value = "uploadFile", required = true) MultipartFile file) { // 컨트롤러 바디 작성 } [참고] [Spring] 스프링 3.0 에서 파일 ..