从文本文件中读取的问题

时间:2015-02-23 14:05:54

标签: c readfile

我一直在尝试用C读取文本文件,但我遇到了问题。我看了几个教程,然后找到了一个似乎有用的教程,但是输出的文本包含了许多我不需要的数据。

这是我的代码:

int c;
FILE *file;
file = fopen(inputFilename, "r");
if (file) {
    while ((c = getc(file)) != EOF) {
        putchar(c);
    }
    fclose(file);
}

这是一个输出:

The contents of testfile.txt file are:
{\rtf1\ansi\ansicpg1252\cocoartf1344\cocoasubrtf720
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural

\f0\fs24 \cf0 this is a test}

显然,我只是想输出“这是一个测试'一部分。

有什么想法吗?

0 个答案:

没有答案