스트림 IO
-
Win32스트림 IO/텍스트 프로세싱 2010. 9. 12. 22:38
GetStdHandle() STD_INPUT_HANDLE STD_OUTPUT_HANDLE STD_ERROR_HANDLE ReadConsole() WriteConsole() /* Write the messages to the output handle. Frequently hOut will be standard out or error, but this is not required. Use WriteConsole (to handle Unicode) first, as the output will normally be the console. If that fails, use WriteFile. hOut: Handle for output file. ... : Variable argument list containi..
-
VBScript스트림 IO/기타 2009. 8. 27. 22:25
Scripting.FileSystemObject.OpenTextFile()' TextStream TextStream.Close()(.Read())(.ReadLine())(.ReadAll())(.Write()).WriteLine()(.WriteBlankLines())Set fso = CreateObject("Scripting.FileSystemObject") Set TextFile = fso.CreateTextFile("C:\Hello.txt", True) TextFile.WriteLine ("Hello, world") TextFile.Close 참조 사이트:http://egloos.zum.com/dojeun/v/318097http://jjjryu.tistory.com/entry/%ED%8C%8C%EC%9..
-
C 라이브러리스트림 IO/기타 2009. 7. 28. 20:32
fopen() "wb" "rb" fclose() fwrite() fread() typedef unsigned long ADDRESS; struct atom {int op; ADDRESS left; ADDRESS right; ADDRESS result; int cmp; int dest; }; FILE * atom_file_ptr; atom_file_ptr = fopen ("atoms", "wb"); atom (int operation, ADDRESS operand1, ADDRESS operand2, ADDRESS result, int comparison, int dest) { struct atom outp; outp.op = operation; outp.left = operand1; outp.right =..
-
FLEX스트림 IO/텍스트 프로세싱 2009. 7. 25. 15:54
cat %% .|\n ECHO; %% wc %{ /* * ch2-03.l * * The word counter example for multiple files * */ unsigned long charCount = 0, wordCount = 0, lineCount = 0; #undef yywrap /* sometimes a macro by default */ %} word [^ \t\n]+ eol \n %% {word} { wordCount++; charCount += yyleng; } {eol} { charCount++; lineCount++; } . charCount++; %% char **fileList; unsigned currentFile = 0; unsigned nFiles; unsigned ..
-
C++스트림 IO/기타 2009. 1. 1. 00:22
사용자 정의 객체들에 대해서 동작할 수 있는 객체 지향 입출력 시스템입출력 라이브러리 // 표준 라이브러리C의 입출력 시스템은 객체에 대해서는 다루고 있지 않다. #include /* or #include //#include */ ios -> istream -> ifstream -> ostream -> ofstream -> iostream -> fstream 표준 출력 스트림 객체 cout .() .get() // ::getch() .getline() #include (w)ofstream .open() // 파일이 없으면 새로 만들고 이미 존재한다면 덮어쓴다. ofstream f("c:\\cpptest.txt"); ios_base::out ios_base::in ios_base::app ios_base:..
-
텍스트 IO - Win32스트림 IO/기타 2008. 12. 14. 21:53
GetStdHandle()SetStdHandle()SetConsoleMode()ReadConsole()WriteConsole()FreeConsole()AllocConsole()#define _UNICODE // C 라이브러리#include _fgettc()_tprintf()_stprintf() // sprintf()_tstcpy() // strcpy()_itot() // itoa()_ttoi()_totuppper()_totlower()#include fread()fwrite()ferror()feof()fgetc()fputc()포매티드 IO(?)순차적 파일 처리(?)catgrep