MFC Serialize() 관련

qubick의 이미지

아 진짜 요구사항은 자꾸 수정되고 책 찾아가며 애먹자니
이거야 원 이건 소스코드인지 스파게티인지 거적때기인지;;

암튼 좀 도와주세요.

사용자가 간단한 텍스트 파일 입출력을 요구하셔서 시리얼라이즈를 하려고 합니다.

void CHaptic_UIDoc::Serialize(CArchive& ar)
{
		char* readBuff = "";
	char* writeBuff = "";
	CString str;
	int index = 0;
	CHaptic_UIView view;
 
	if (ar.IsStoring()){ // save file
		for(int i=0; i<cnt; i++){
			switch(dutyList[i].kind) {
				case 0: writeBuff = "FWD "; break;
				case 1: writeBuff = "RVS "; break;
				case 2: writeBuff = "BRK "; break;
			}
			ar.WriteString(writeBuff); 
			ar << dutyList[i].speed; //error
		}
	} else if (ar.IsLoading()) {
 
		ar.Read(readBuff, 4); 
		ar >> index; //error
 
	} else {
		int x=0;
	}
}

위에 storing 부분에서 보면 ar << dutyList[i].speed; 에서 파일에 써야 하는 내용이 integer, 즉 숫자 그대로여야 하는데,
<< 로 넣으니 텍스트파일에는 char형태로 캐스팅 된 형태로 쓰입니다.
예를 들어 dutyList[i].speed == 10 이면 text는 10의 아스키 변환값인 까만 네모문자가;;
이거 숫자 그대로를 쓰는 방법은 없는 걸까요?

아 요구사항은 쌓여이쓴데 이런 간단한 코드조차 실행이 안 되니 전 정말이지 죽고만 싶습니다-_ㅠㅠㅠㅠㅠㅠ

pokev25의 이미지

시리얼 라이즈 사용하면..그게 그렇게 들어가는게..정상이구요..

숫자 10을 10이라고 적히게 하고 싶으면 숫자를 문자로 바꾼다음에

그걸 시리얼 라이즈 하셔야지요.

CString szTemp;

szTemp.Format("%d",some.number);

ar << szTemp

pokev25의 이미지

단순한 텍스트 파일을 하실꺼라면

시리얼 라이즈 말고

CStdioFile 을 사용하시는게 편할껍니다.

WriteString함수로 쓰면 텍스트 파일은 편리합니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.