전체 글(350)
-
앱 설정 화면 이동
Objective-C NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; [[UIApplication sharedApplication] openURL:url]; Swift UIApplication.shared.open(URL(string:UIApplication.openSettingsURLString)!) _____
2022.08.29 -
이미지 파일에 압축파일 숨기기
Windows ■ 생성하기 > copy /b image.jpg + archive.zip image_archive.jpg ※ zip 파일 이외에도 여러가지 종류의 파일을 추가 가능하다 ■ 추출/분리하기 rename image_archive.jpg image_archive.zip 압축 프로그램을 이용 압축 해제 OSX / Mac ■ 생성하기 > cat image.jpg + archive.zip image_archive.jpg ■ 추출/분리하기 > unzip image_archive.jpg 또는 압축 프로그램을 이용 압축 해제
2022.08.29 -
[Error] Exception in filter Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is org.apache.commons.fileupload.FileUploadException: Stream end..
현상 iOS NSURLSession 파일 업로드중 서버 오류 발생. PHP 서버에서는 정상적으로 동작하는 코드가 SpringFramework 에서 오류 발생 원인 multipart/form-data 전송 데이터 생성시 Boundary 마지막에. --가 붙지 않아 발생한 오류 해결 방법 마지막 Boundary 뒤에 -- 추가 ------WebKitFormBoundaryuggrEmcb3XoH6hwM-- ------WebKitFormBoundaryuggrEmcb3XoH6hwM Content-Disposition: form-data; name="preImage"; filename="IMG_0043.JPG" Content-Type: image/jpeg ------WebKitFormBoundaryuggrEmcb3X..
2022.08.27 -
주민등록번호 자리별 규칙
YYMMDD-GHIJKLX ◻︎ YYMMDD : 생년월일 ◻︎ G : 출생세기와 성별 1 : 1900년대 태어난 남자 2 : 1900년대 태어난 여자 3 : 2000년대 태어난 남자 4 : 2000년대 태어난 여자 5 : 1900년대 태어난 외국인 남자 6 : 1900년대 태어난 외국인 여자 7 : 2000년대 태어난 외국인 남자 8 : 2000년대 태어난 외국인 여자 9 : 1800년대 태어난 남자 0 : 1800년대 태어난 여자
2022.08.19 -
[SQLiteDatabase] WHERE절 LIKE에 WILDCARD 사용하기
# WILDCARD를 SelectionArgs에 포함해서 처리 String[] selectionArgs = new String[] { searchString + "%" }; Cursor c = db.rawQuery("SELECT * FROM table WHERE column=?", selectionArgs);
2022.06.21 -
[Solution] 간편인증(민간전자서명) | Raon OneAccessCX
OneAccessCX https://www.raoncorp.com/ko/solution/oneaccessex OneAccessEX, 인증 통합 관리 플랫폼 OneAccessEX는 인증 통합 관리 플랫폼 입니다. www.raoncorp.com https://blog.naver.com/funraon/222294907527 '정부24'도 이제 민간 인증서로 빠르고 편리하게! 정부24, 홈택스, 국민신문고 간편인증 속 숨은 2021년 3월 31일, 행정서비스 통합 포털 '정부24'에 공동인증서와 함께 민간 전자서명인 '... blog.naver.com
2022.06.21