본문 바로가기

Programming

(86)
[APM] 윈도우APM 설치 후 웹(클라이언트)에서 myadmin 접속 하는 방법 Apache의 설정디렉토리 중 extra라는 폴더안에 보면 ex) C:\APM_Setup\Server\Apache\conf\extra httpd-alias.conf 라는 파일이 존재한다. 이 파일을 메모장으로 열어 # 외부 접속 가능하게 하려면 아래 설정처럼 변경 Alias /myadmin/ "C:/APM_Setup/Server/phpMyAdmin/" Options MultiViews AllowOverride None Order allow,deny Allow from all
[C/C++] Delete File with C++ (C++로 파일 삭제) CFile 클래스를 사용하여 CFile::Remove("파일 경로"); 로 지울 수 있다. 예를 들어 파일의 주소가 C:\test.txt 라고 하면 간단하게 CFile::Remove("C:\\test.txt"); 로 하면 지워 진 것을 확인 할 수 있다.
[C/C++] 구조체 동적 배열 할당 및 재할당 POINT* ptArray; //구조체로 정의 된 변수 ptArray = (POINT*)malloc(sizeof(POINT)*200); //구조체 동적 할당 memset(ptArray, 0x00, sizeof(POINT)*200); //할당 된 영역을 0으로 초기화 ptArray = (POINT*)realloc(ptArray, sizeof(POINT)*count); //할당 된 동적 구조체 재할당
[C/C++] BSTR to char and char to BSTR (BSTR, char 간 변환) #include // BSTR to char ///////////////////////////////////////////////// void BSTRtoCHAR(char *Msg[], const BSTR conv) { USES_CONVERSION; strcpy( *Msg, OLE2T(conv) ); } //char to BSTR ///////////////////////////////////////////////// void CHARtoBSTR( BSTR *Msg, const char *conv ) { USES_CONVERSION; *Msg = T2OLE(conv); // *Msg = SysAllocString( A2W(conv) ); }
[C,C++] 문자열 나누기(자르기) strtok 예제 (배열에 저장) 문자열을 나눈 후 나눈 값을 배열에 저장 int main(int argc, char **argv) { FILE *fp_out ; char buf_in[255]; int TestX[10]; int TestY[10]; char *pToken = NULL; char *pSeparator = " "; int count =0, num= 0 ; fp_out = fopen("Test.txt", "r"); while(fgets(buf_in, 255, fp_out) != NULL){ pToken = strtok(buf_in, pSeparator); num = atoi(pToken); TestX[count] = num; pToken = strtok(NULL, pSeparator); num = atoi(pToken); Te..
[C/C++] 파일에 정수 쓰기, 읽기 1] 파일에 정수 쓰기 (문제) 28, 34, 35, 43을 파일 "4num.txt"에 써라 - 형식 : fprintf(stream, "%d%d%d%d",a,b,c,d); #include FILE *fi; main(){ int a=28,b=34,c=35,d=43; fi=fopen("4num.txt","w"); fprintf(fi,"%d%d%d%d",a,b,c,d); fclose(fi); } 2] 파일에서 정수 읽기 (문제) 위 파일에서 4개의 수 읽기 #include FILE *fr; main(){ int e,f,g,h; clrscr(); fr=fopen("4num.txt","r"); fscanf(fr,"%d%d%d%d",&e,&f,&g,&h); /*scan은 포인터주소를 찾으므로 &를 붙여야한다*/ f..
[C/C++] 구조체배열(Structure Array)의 바이너리 파일 입출력 구조체배열(Structure Array)의 바이너리 파일 입출력 //파일 ---> 구조체 void readFileTheater(theater* th) { FILE* fp; fp = fopen("THEATER_FILE", "rb"); for(int i=0;i 파일 void writeFileTheater(theater* th) { FILE* fp; fp = fopen("THEATER_FILE", "wb"); for(int i=0;i
[OpenCV] 두 이미지의 차영상 만들기 # 이미지의 차(뺄셈) 이용 이미지(x,y) - 이미지(x,y) = 결과이미지(x,y) @ OpenCV를 이용한 활용 //차영상 만들기 for(int _height = 0 ;_height height ; _height++) { for(int _width = 0; _width width ; _width++) { int differ_value; differ_value = gray_image1->imageData[_height * gray_image1->width + _width] - gray_image2->imageData[_height * gray_image2->width + _width]; differ_value = abs(differ_value); if..

반응형