How to copy a .txt file to a char array in c++

后端 未结 5 865
忘了有多久
忘了有多久 2020-11-27 17:26

Im trying to copy a whole .txt file into a char array. My code works but it leaves out the white spaces. So for example if my .txt file reads \"I Like Pie\" and i copy it to

相关标签:
5条回答
  • 2020-11-27 18:03

    A much simpler approach would be using the get() member function:

    while(!myfile.eof() && i < arraysize)
    {
        myfile.get(array[i]); //reading single character from file to array
        i++;
    }
    
    0 讨论(0)
  • 2020-11-27 18:08

    With

    myfile >> myArray[i]; 
    

    you are reading file word by word which causes skipping of the spaces.

    You can read entire file into the string with

    std::ifstream in("FileReadExample.cpp");
    std::string contents((std::istreambuf_iterator<char>(in)), 
        std::istreambuf_iterator<char>());
    

    And then you can use contents.c_str() to get char array.

    How this works

    std::string has range constructor that copies the sequence of characters in the range [first,last) note that it will not copy last, in the same order:

    template <class InputIterator>
      string  (InputIterator first, InputIterator last);
    

    std::istreambuf_iterator iterator is input iterator that read successive elements from a stream buffer.

    std::istreambuf_iterator<char>(in)
    

    will create iterator for our ifstream in (beginning of the file), and if you don't pass any parameters to the constructor, it will create end-of-stream iterator (last position):

    The default-constructed std::istreambuf_iterator is known as the end-of-stream iterator. When a valid std::istreambuf_iterator reaches the end of the underlying stream, it becomes equal to the end-of-stream iterator. Dereferencing or incrementing it further invokes undefined behavior.

    So, this will copy all characters, starting from the first in the file, until the next character is end of the stream.

    0 讨论(0)
  • 2020-11-27 18:10

    A simple solution if you're bound to using char arrays, and minimal modification to your code. The snippet below will include all spaces and line breaks until the end of the file.

          while (!myfile.eof())
          {
                myfile.get(myArray[i]);
                i++;
                num_characters ++;
          }  
    
    0 讨论(0)
  • 2020-11-27 18:13

    Here is the code snippet you need:

    #include <string>
    #include <fstream>
    #include <streambuf>
    #include <iostream>
    
    
    int main()
    {
      std::ifstream file("name.txt");
      std::string str((std::istreambuf_iterator<char>(file)),
                            std::istreambuf_iterator<char>());
    
      str.c_str();
    
      for( unsigned int a = 0; a < sizeof(str)/sizeof(str[0]); a = a + 1 )
      {
        std::cout << str[a] << std::endl;
      }
    
      return 0;
    }
    
    0 讨论(0)
  • 2020-11-27 18:26

    Use the following code snippet:

    FILE *f = fopen("textfile.txt", "rb");
    fseek(f, 0, SEEK_END);
    long fsize = ftell(f);
    fseek(f, 0, SEEK_SET);
    
    char *string = (char *)malloc(fsize + 1);
    fread(string, fsize, 1, f);
    fclose(f);
    
    string[fsize] = 0;
    
    0 讨论(0)
提交回复
热议问题