摘要: 从Github上下载jsoncpp, https://github.com/open-source-parsers/jsoncpp。 原文: https://blog.csdn.net/shaosunrise/article/details/84680602 阅读全文
posted @ 2019-05-08 10:24 jungil 阅读(138) 评论(0) 推荐(0) 编辑
摘要: coff2omf.exe coff2omf2 <변환할Lib> : src를 덮어버리므로 백업후 변환 阅读全文
posted @ 2019-05-08 09:53 jungil 阅读(393) 评论(0) 推荐(0) 编辑
摘要: C:\Program Files (x86)\Microsoft Visual Studio 11.0 sc create 서비스명 binPath= "경로\등록할서비스.exe" DisplayName= "서비스명" sc delete 서비스명 Sc.exe를 사용하여 Windows 서비 阅读全文
posted @ 2019-03-27 11:32 jungil 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Truncate는 테이블 구조와 테이블의 열, 제약조건, 인덱스, FK 등은 남는다.만약 사용할 테이블에 ID열이 있다면 다시 초기화 된다.사용법은 아래와 같다 Truncate Table [초기화 할 테이블명]비슷한 기능으로 Delete와 Drop이 있다. Delete 阅读全文
posted @ 2019-03-27 11:31 jungil 阅读(89) 评论(0) 推荐(0) 编辑
摘要: Declare @d datetime select @d = getdate() select @d as OriginalDate, convert(varchar,@d,100) as ConvertedDate, 100 as FormatValue, 'mon dd yyyy hh:miA 阅读全文
posted @ 2019-03-27 11:30 jungil 阅读(490) 评论(0) 推荐(0) 编辑
摘要: Linux / Unix 命令格式 command [-选项...] [参数...] cd [경로] -해당 경로로 이동한다. -"."은 현재 경로를, ".."은 상위 경로를 의미한다. -상대경로 혹은 절대경로를 이용해 이동 가능하다. pwd -현재 위치를 나타낸다. ls -현재 阅读全文
posted @ 2019-03-27 11:26 jungil 阅读(76) 评论(0) 推荐(0) 编辑
摘要: Linux 디렉토리 구조 / : 최상의 디렉토리인 root 디렉토리. /home : 사용자 홈 디렉토리, ID와 동일한 이름으로 디렉토리를 가짐 . /bin : 중요하다고 꼭 필요하 명령어가 있는 디렉토리, 일반 사용자의 명령어가 있는 디렉토리. /boot : 커널(v 阅读全文
posted @ 2019-03-27 11:26 jungil 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 1. zip 打包 : zip -r [압축파일명.zip] [폴더명] 释放 : unzip [압축파일명.tar.gz] 2. tar 无压缩 打包 : tar -cvf [압축파일명.tar] [폴더명] 释放 : tar -xvf [압축파일명.tar] 3. tar.gz 压缩 打包 : 阅读全文
posted @ 2019-03-27 11:25 jungil 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 1. 권한 ex) drwxrwxrwx root root java-rwxrwx root root Hello.java d : 폴더, - : 파일 r : read, w : write, x : rwx + rwx + rwx user group other chmod ug+rw, 阅读全文
posted @ 2019-03-27 11:25 jungil 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 리눅스 os 버전 확인 # uname -a # cat /etc/issue 아파치(Apache) 버전 확인 # cd [apache 경로]/bin/httpd -v 톰캐(Tomcat) 버전 확인 # cd [tomcat 경로]/bin/catalina.sh version MyS 阅读全文
posted @ 2019-03-27 11:24 jungil 阅读(89) 评论(0) 推荐(0) 编辑