Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Problem with ifstream and Qt Creator
Forum Updated to NodeBB v4.3 + New Features

Problem with ifstream and Qt Creator

Scheduled Pinned Locked Moved Solved General and Desktop
23 Posts 6 Posters 14.1k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B BadHombre
    8 Mar 2017, 06:32

    @jsulm You're right i get an wrong size ... i used now qDebug()<< size and it prints -1 ... but why ... in Visual Studio its working ....

    char * buffer;
    	long size;
    	file.seekg(0, std::ios::end);
    	size = file.tellg();
    	file.seekg(0, std::ios::beg);
    	buffer = new char[size];
    	file.read(buffer, size);
    	file.close();
    
    	double* double_values = (double*)buffer;//reinterpret as doubles
    	vector<double> buffer2(double_values, double_values + (size / sizeof(double)));
    
    J Offline
    J Offline
    jsulm
    Lifetime Qt Champion
    wrote on 8 Mar 2017, 06:42 last edited by
    #11

    @BadHombre First, you should check whether file was opened:

    ifstream file("fileName", ios::in | ios::binary | ios::ate);
    if (file) {
    ...
    }
    

    https://forum.qt.io/topic/113070/qt-code-of-conduct

    1 Reply Last reply
    2
    • B Offline
      B Offline
      BadHombre
      wrote on 8 Mar 2017, 07:00 last edited by BadHombre 3 Aug 2017, 07:02
      #12

      @jsulm it doesn t open the file ... but i checked also the file name and its correct. The .bin file should also be right because with visual studio it works ...

      QStringList Filename = QFileDialog::getOpenFileNames(
              this,
              tr("Choose your File"),
              "C://",
              "All files (*.*);;BIN (*.bin)");
      

      @ambershark sorry i didn 't saw your post i will try it.

      1 Reply Last reply
      0
      • B Offline
        B Offline
        BadHombre
        wrote on 8 Mar 2017, 07:05 last edited by
        #13

        @ambershark it doesn ' open the file ... so it should be sth wrong with the path... I printed the Filename which i get with Qstringlist and it looks like that :

        ("E:/test/file.bin")
        
        J 1 Reply Last reply 8 Mar 2017, 07:12
        0
        • B BadHombre
          8 Mar 2017, 07:05

          @ambershark it doesn ' open the file ... so it should be sth wrong with the path... I printed the Filename which i get with Qstringlist and it looks like that :

          ("E:/test/file.bin")
          
          J Offline
          J Offline
          jsulm
          Lifetime Qt Champion
          wrote on 8 Mar 2017, 07:12 last edited by jsulm 3 Aug 2017, 07:13
          #14

          @BadHombre You should try to remove ios::ate as it is for output but you're opening for reading (ios::in).
          Also I'm not sure ifstream supports / in paths on Windows (Qt does). Try to replace / with \\.
          From here: http://www.cplusplus.com/reference/fstream/ifstream/ifstream/
          "filename
          A string representing the name of the file to open.
          Specifics about its format and validity depend on the library implementation and running environment."

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          1
          • T Offline
            T Offline
            tham
            wrote on 8 Mar 2017, 07:19 last edited by tham 3 Aug 2017, 07:26
            #15

            Could you show us your .pro file(minimum one please)?Which version of Qt, QtCreator your are using?Are you sure you are using the same compiler to compile your codes?

            Besides, you do not need to use raw pointer, there are std::string or std::vector could help you release the memory, in your case std::vector maybe a better choice, because it looks more like a buffer compare with std::string.

            if(!file.is_open()){
              std::cerr<<"cannot open file\n";
              return -1;
            }
            
            auto const size = file.seekg(0, std::ios::end);
            std::vector<char> buffer(size );
            file.seekg(0, std::ios::beg);
            file.read(&buffer[0], size); //same way to feed the data into std::string
            file.close();
            

            You could use std::unique_ptr too

            auto buffer = std::make_unique<char[]> p(file.tellg());
            file.read(buffer.get(), size); //same way to feed the data into std::string
            

            However, I would prefer QFile to ease my pain rather than using std::ifstream

            Also I'm not sure ifstream supports / in paths on Windows (Qt does). Try to replace / with \

            / works on my laptop(windows 10 64bits), using Qt5.7, visual c++ 2015 with update 3.

            1 Reply Last reply
            1
            • B Offline
              B Offline
              BadHombre
              wrote on 8 Mar 2017, 08:18 last edited by
              #16

              Thanks guys for the Help ! ... so the Problem is that getOpenFileNames gives me the Path like that :

              ("E:/test/file.bin")
              

              to use it in if stream i need zu 2 Slashes after the Drive.. sth like :

              ("E://test/file.bin")
              

              I tried to use :

              QFile f("myfile");
              Q
              if (f.open(QIODevice::ReadOnly))
              {
              
              }
              

              but it doesn't open the File ... Does sb know how i get a second slash after the without Hardcoding :/ Or why doesn 't qread work ?

              J 2 Replies Last reply 8 Mar 2017, 08:20
              0
              • B BadHombre
                8 Mar 2017, 08:18

                Thanks guys for the Help ! ... so the Problem is that getOpenFileNames gives me the Path like that :

                ("E:/test/file.bin")
                

                to use it in if stream i need zu 2 Slashes after the Drive.. sth like :

                ("E://test/file.bin")
                

                I tried to use :

                QFile f("myfile");
                Q
                if (f.open(QIODevice::ReadOnly))
                {
                
                }
                

                but it doesn't open the File ... Does sb know how i get a second slash after the without Hardcoding :/ Or why doesn 't qread work ?

                J Offline
                J Offline
                jsulm
                Lifetime Qt Champion
                wrote on 8 Mar 2017, 08:20 last edited by
                #17

                @BadHombre Why do you want to use ifstream? If you're already using Qt why not use QFile,...?

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                1
                • B BadHombre
                  8 Mar 2017, 08:18

                  Thanks guys for the Help ! ... so the Problem is that getOpenFileNames gives me the Path like that :

                  ("E:/test/file.bin")
                  

                  to use it in if stream i need zu 2 Slashes after the Drive.. sth like :

                  ("E://test/file.bin")
                  

                  I tried to use :

                  QFile f("myfile");
                  Q
                  if (f.open(QIODevice::ReadOnly))
                  {
                  
                  }
                  

                  but it doesn't open the File ... Does sb know how i get a second slash after the without Hardcoding :/ Or why doesn 't qread work ?

                  J Offline
                  J Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on 8 Mar 2017, 08:32 last edited by
                  #18

                  @BadHombre said in Problem with ifstream and Qt Creator:

                  QFile f("myfile");

                  Did you check why it doesn't open the file? What is myfile? Absolute path? Relative path?
                  Did you check http://doc.qt.io/qt-5/qiodevice.html#errorString ?

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  2
                  • B Offline
                    B Offline
                    BadHombre
                    wrote on 8 Mar 2017, 11:01 last edited by BadHombre 3 Aug 2017, 11:02
                    #19

                    @jsulm I tried now to use QFile ... and it seems to be working... but do you kno how i get the doubles of the file... For example read the doubles into a vector.. is this possible ?

                    F J 2 Replies Last reply 8 Mar 2017, 11:12
                    0
                    • B BadHombre
                      8 Mar 2017, 11:01

                      @jsulm I tried now to use QFile ... and it seems to be working... but do you kno how i get the doubles of the file... For example read the doubles into a vector.. is this possible ?

                      F Offline
                      F Offline
                      Flotisable
                      wrote on 8 Mar 2017, 11:12 last edited by
                      #20

                      @BadHombre
                      read QDataStream document

                      1 Reply Last reply
                      1
                      • B BadHombre
                        8 Mar 2017, 11:01

                        @jsulm I tried now to use QFile ... and it seems to be working... but do you kno how i get the doubles of the file... For example read the doubles into a vector.. is this possible ?

                        J Offline
                        J Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on 8 Mar 2017, 11:12 last edited by
                        #21

                        @BadHombre Take a look at http://doc.qt.io/qt-5/qdatastream.html

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        1
                        • B Offline
                          B Offline
                          BadHombre
                          wrote on 8 Mar 2017, 17:24 last edited by
                          #22

                          Okay Thanks for your Help Guys :) I also found a way to realise it with ifstream for the people who maybe need it one day...

                           QStringList filenames = QFileDialog::getOpenFileNames(
                                  this,
                                  tr("Choose "),
                                  "C://",
                                  "All files (*.*)");
                          
                              std::string current_locale_text = filenames[0].toLocal8Bit().constData();
                          
                              ifstream file(current_locale_text.c_str());
                          
                          1 Reply Last reply
                          0
                          • J jsulm
                            8 Mar 2017, 05:32

                            @BadHombre said in Problem with ifstream and Qt Creator:

                            Its sth like 6000

                            Did you really check the value of size? That's what a debugger is for.
                            Are you sure your app crashes exactly at "char * buffer = new char [size];"?
                            Also you do not seek to the beginning of the file before reading from it!

                            file.seekg(0, std::ios::end);
                            int size = file.tellg();
                            char * buffer = new char [100000000]; // muss geƤndert werden
                            file.read(buffer, size);
                            
                            A Offline
                            A Offline
                            ambershark
                            wrote on 8 Mar 2017, 18:35 last edited by
                            #23

                            @jsulm said in Problem with ifstream and Qt Creator:

                            Also you do not seek to the beginning of the file before reading from it!

                            Good catch jsulm! I didn't even see that.

                            My L-GPL'd C++ Logger github.com/ambershark-mike/sharklog

                            1 Reply Last reply
                            0

                            20/23

                            8 Mar 2017, 11:12

                            • Login

                            • Login or register to search.
                            20 out of 23
                            • First post
                              20/23
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • Users
                            • Groups
                            • Search
                            • Get Qt Extensions
                            • Unsolved