ifstream reading

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
like80ninjas
Chaos Rift Regular
Chaos Rift Regular
Posts: 101
Joined: Thu Dec 09, 2010 2:13 am

ifstream reading

Post by like80ninjas »

I'm trying to read in a file line by line and just print it to the screen. I know how to do this, and have done it many times, but for some reason my code isn't printing!

string index;
ifstream mapfile("map.txt");
while (mapfile)
{
getline(mapfile,index);
cout << index;
}
mapfile.close();

I've included <iostream> and <fstream> properly, and it all compiles no problem. Also, the map.txt IS in the right directory and it's all setup etc, it simply WILL NOT print to console and I can't figure out why.
Any help guys?
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: ifstream reading

Post by dandymcgee »

Try while(!mapfile.eof()). I suspect an infinite loop.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
like80ninjas
Chaos Rift Regular
Chaos Rift Regular
Posts: 101
Joined: Thu Dec 09, 2010 2:13 am

Re: ifstream reading

Post by like80ninjas »

Yeah, that causes an infinite loop, what's the problem?
User avatar
MadPumpkin
Chaos Rift Maniac
Chaos Rift Maniac
Posts: 484
Joined: Fri Feb 13, 2009 4:48 pm
Current Project: Octopia
Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
Programming Language of Choice: C/++,Java,Py,LUA,XML
Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk

Re: ifstream reading

Post by MadPumpkin »

like80ninjas wrote:I'm trying to read in a file line by line and just print it to the screen. I know how to do this, and have done it many times, but for some reason my code isn't printing!

string index;
ifstream mapfile("map.txt");
while (mapfile)
{
getline(mapfile,index);
cout << index;
}
mapfile.close();

I've included <iostream> and <fstream> properly, and it all compiles no problem. Also, the map.txt IS in the right directory and it's all setup etc, it simply WILL NOT print to console and I can't figure out why.
Any help guys?
Alright so first, you should keep all of your posted codes in code tags so that it's more organized.

So here is what it should look like, just a few minor changes. I haven't compiled this but it really should work fine.

Code: Select all

#include <iostream>
#include <fstream>
#include <string.h>
using namespace std;

int main () {
   string index;
   ifstream mapfile("map.txt");
   if(mapfile.is_open()) //This is what actually checks if it's open I recommend not just "if(mapfile){ etc. }"
   {
      while(!mapfile.eof()) //While not the end of file
      {
         getline(mapfile,index);
         cout << index << endl;
      }
      mapfile.close();
   }
   return 0;
}
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock
Image
Image
Image
like80ninjas
Chaos Rift Regular
Chaos Rift Regular
Posts: 101
Joined: Thu Dec 09, 2010 2:13 am

Re: ifstream reading

Post by like80ninjas »

First, I retyped your suggested code, same result, then I copy pasted it, same result. It simply won't print anything. The only thing I can think of is that the text file is in the wrong directory but it isn't. It's in the project directory, where the source is located, and it's being run from the ide(visual studio) all my images load fine from this directory.
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: ifstream reading

Post by dandymcgee »

like80ninjas wrote:Yeah, that causes an infinite loop, what's the problem?
The standard out stream is probably not being flushed until that loop ends, which it never does.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
MadPumpkin
Chaos Rift Maniac
Chaos Rift Maniac
Posts: 484
Joined: Fri Feb 13, 2009 4:48 pm
Current Project: Octopia
Favorite Gaming Platforms: PS1-3, Genesis, Dreamcast, SNES, PC
Programming Language of Choice: C/++,Java,Py,LUA,XML
Location: C:\\United States of America\Utah\West Valley City\Neighborhood\House\Computer Desk

Re: ifstream reading

Post by MadPumpkin »

like80ninjas wrote:First, I retyped your suggested code, same result, then I copy pasted it, same result. It simply won't print anything. The only thing I can think of is that the text file is in the wrong directory but it isn't. It's in the project directory, where the source is located, and it's being run from the ide(visual studio) all my images load fine from this directory.
It has to be where the application itself is located, so where ever you are running the application from, has to have the "map.txt" in it.
EDIT: unless you put something like "Maps/Forest Maps/map.txt" instead of just "map.txt" as the file name.
While Jesus equipped with angels, the Devil's equipped with cops
For God so loved the world that he blessed the thugs with rock
Image
Image
Image
like80ninjas
Chaos Rift Regular
Chaos Rift Regular
Posts: 101
Joined: Thu Dec 09, 2010 2:13 am

Re: ifstream reading

Post by like80ninjas »

I'm running the game from my compiler, visual studio, and it's directory is the same directory you keep your source files. All of my images, and DLLs are located there as well and load fine.
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: ifstream reading

Post by dandymcgee »

Try making a new project in a new folder.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
like80ninjas
Chaos Rift Regular
Chaos Rift Regular
Posts: 101
Joined: Thu Dec 09, 2010 2:13 am

Re: ifstream reading

Post by like80ninjas »

Why would that help my cause? I would prefer not to make a new project.
User avatar
TheBuzzSaw
Chaos Rift Junior
Chaos Rift Junior
Posts: 310
Joined: Wed Dec 02, 2009 3:55 pm
Current Project: Paroxysm
Favorite Gaming Platforms: PC
Programming Language of Choice: C++
Contact:

Re: ifstream reading

Post by TheBuzzSaw »

Code: Select all

string s;
while (getline(mapfile, s))
{
    // do stuff
}
That's the best way to do it. ^^^
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: ifstream reading

Post by dandymcgee »

Try changing #include<string.h> to #include<string>. That is the only thing I had to change to compile MadPumpkin's code and have it work correctly.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
like80ninjas
Chaos Rift Regular
Chaos Rift Regular
Posts: 101
Joined: Thu Dec 09, 2010 2:13 am

Re: ifstream reading

Post by like80ninjas »

In my code I do use <string> rather than <string.h>
But, i'll try TheBuzzSaw's method and see how it turns out.
I'm just trying to get a system built to load a map from text, and I've done it before in multiple engines, but this time it just won't work!
User avatar
TheBuzzSaw
Chaos Rift Junior
Chaos Rift Junior
Posts: 310
Joined: Wed Dec 02, 2009 3:55 pm
Current Project: Paroxysm
Favorite Gaming Platforms: PC
Programming Language of Choice: C++
Contact:

Re: ifstream reading

Post by TheBuzzSaw »

Yeah you have to be careful with the string libraries. The C library is string.h or cstring when including from C++. The STL string library is just <string>.
Post Reply