Je veux lire le contenu d'un fichier texte dans un tableau de caractères en C. Les nouvelles lignes doivent être conservées.
Comment puis-je accomplir cela? J'ai trouvé des solutions C++ sur le Web, mais pas de solution C uniquement.
Edit: J'ai le code suivant maintenant:
void *loadfile(char *file, int *size)
{
FILE *fp;
long lSize;
char *buffer;
fp = fopen ( file , "rb" );
if( !fp ) perror(file),exit(1);
fseek( fp , 0L , SEEK_END);
lSize = ftell( fp );
rewind( fp );
/* allocate memory for entire content */
buffer = calloc( 1, lSize+1 );
if( !buffer ) fclose(fp),fputs("memory alloc fails",stderr),exit(1);
/* copy the file into the buffer */
if( 1!=fread( buffer , lSize, 1 , fp) )
fclose(fp),free(buffer),fputs("entire read fails",stderr),exit(1);
/* do your work here, buffer is a string contains the whole text */
size = (int *)lSize;
fclose(fp);
return buffer;
}
J'obtiens un avertissement: avertissement: l'assignation crée un pointeur à partir d'un entier sans transtypage. Ceci est sur la ligne size = (int)lSize;
. Si je lance l'application, elle segfafaults.
Mise à jour: Le code ci-dessus fonctionne maintenant. J'ai localisé le segfault et j'ai posté une autre question. Merci pour l'aide.
FILE *fp;
long lSize;
char *buffer;
fp = fopen ( "blah.txt" , "rb" );
if( !fp ) perror("blah.txt"),exit(1);
fseek( fp , 0L , SEEK_END);
lSize = ftell( fp );
rewind( fp );
/* allocate memory for entire content */
buffer = calloc( 1, lSize+1 );
if( !buffer ) fclose(fp),fputs("memory alloc fails",stderr),exit(1);
/* copy the file into the buffer */
if( 1!=fread( buffer , lSize, 1 , fp) )
fclose(fp),free(buffer),fputs("entire read fails",stderr),exit(1);
/* do your work here, buffer is a string contains the whole text */
fclose(fp);
free(buffer);
Une solution sous la forme d'un programme complet qui répond à la question et la démontre. C'est un peu plus explicite que d'autres réponses et, par conséquent, plus facile à comprendre pour ceux qui ont moins d'expérience dansC(IMHO).
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
/*
* 'Slurp' reads the file identified by 'path' into a character buffer
* pointed at by 'buf', optionally adding a terminating NUL if
* 'add_nul' is true. On success, the size of the file is returned; on
* failure, -1 is returned and ERRNO is set by the underlying system
* or library call that failed.
*
* WARNING: 'Slurp' malloc()s memory to '*buf' which must be freed by
* the caller.
*/
long Slurp(char const* path, char **buf, bool add_nul)
{
FILE *fp;
size_t fsz;
long off_end;
int rc;
/* Open the file */
fp = fopen(path, "rb");
if( NULL == fp ) {
return -1L;
}
/* Seek to the end of the file */
rc = fseek(fp, 0L, SEEK_END);
if( 0 != rc ) {
return -1L;
}
/* Byte offset to the end of the file (size) */
if( 0 > (off_end = ftell(fp)) ) {
return -1L;
}
fsz = (size_t)off_end;
/* Allocate a buffer to hold the whole file */
*buf = malloc( fsz+(int)add_nul );
if( NULL == *buf ) {
return -1L;
}
/* Rewind file pointer to start of file */
rewind(fp);
/* Slurp file into buffer */
if( fsz != fread(*buf, 1, fsz, fp) ) {
free(*buf);
return -1L;
}
/* Close the file */
if( EOF == fclose(fp) ) {
free(*buf);
return -1L;
}
if( add_nul ) {
/* Make sure the buffer is NUL-terminated, just in case */
buf[fsz] = '\0';
}
/* Return the file size */
return (long)fsz;
}
/*
* Usage message for demo (in main(), below)
*/
void usage(void) {
fputs("USAGE: ./Slurp <filename>\n", stderr);
exit(1);
}
/*
* Demonstrates a call to 'Slurp'.
*/
int main(int argc, char *argv[]) {
long file_size;
char *buf;
/* Make sure there is at least one command-line argument */
if( argc < 2 ) {
usage();
}
/* Try the first command-line argument as a file name */
file_size = Slurp(argv[1], &buf, false);
/* Bail if we get a negative file size back from Slurp() */
if( file_size < 0L ) {
perror("File read failed");
usage();
}
/* Write to stdout whatever Slurp() read in */
(void)fwrite(buf, 1, file_size, stdout);
/* Remember to free() memory allocated by Slurp() */
free( buf );
return 0;
}
fgets () est une fonction C qui peut être utilisée à cette fin.
Edit: / Vous pouvez également envisager d'utiliser fread ().
Depuis que j'ai utilisé Slurp()
m'attendant à ce que cela fonctionne, quelques jours plus tard, j'ai découvert que ... ce n'est pas le cas.
Donc, pour les personnes désireuses de copier/coller une solution pour "obtenir le contenu d'un fichier dans un caractère *", voici quelque chose que vous pouvez utiliser.
char* load_file(char const* path)
{
char* buffer = 0;
long length;
FILE * f = fopen (path, "rb"); //was "rb"
if (f)
{
fseek (f, 0, SEEK_END);
length = ftell (f);
fseek (f, 0, SEEK_SET);
buffer = (char*)malloc ((length+1)*sizeof(char));
if (buffer)
{
fread (buffer, sizeof(char), length, f);
}
fclose (f);
}
buffer[length] = '\0';
// for (int i = 0; i < length; i++) {
// printf("buffer[%d] == %c\n", i, buffer[i]);
// }
//printf("buffer = %s\n", buffer);
return buffer;
}
J'ai utilisé le code suivant pour lire le fichier XML dans un tampon de char et j'ai dû ajouter\0 à la fin du fichier
FILE *fptr;
char *msg;
long length;
size_t read_s = 0;
fptr = fopen("example_test.xml", "rb");
fseek(fptr, 0L, SEEK_END);
length = ftell(fptr);
rewind(fptr);
msg = (char*)malloc((length+1));
read_s = fread(msg, 1, length, fptr);
*(mip_msg+ read_s) = 0;
if (fptr) fclose(fptr);