1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
#include <cstdlib>
#include <iostream>
#include <string>
#include <fstream>
#include <time.h>
using namespace std;
const bool write = false; // change this to false after writing to file
struct Item {
int id;
string name;
};
int main(int argc, char *argv[])
{
Item * _arr = new Item [10];
string array[7] = {"Ice", "Cold", "Bud", "Light", "Makes", "Me", "Drunk"};
if (write == true)
{
cout << "Entered Write Segment." << endl;
srand(time(NULL));
for (int i = 0; i <= 6; ++i)
{
int x = (rand() % 100);
_arr[i].id = x;
_arr[i].name = array[i];
}
ofstream out; // open file
out.open("myfile.dat", ios::out | ios::trunc | ios::binary);
if (!out.is_open())
{
cout << "Could not open file for writing." << endl;
system("PAUSE");
return 0;
}
cout << "File open for writing." << endl;
for (int i = 0; i <= 6; ++i)
{
int n = _arr[i].id; // get the id
char bytes[4];
for (int j = 3; j >= 0; j--, n >> 8)
bytes[j] = n & 0xFF;
out.write(bytes, 4); // write the bytes to the file
out.write(_arr[i].name.c_str(), _arr[i].name.length() + 1); // write the name
}
out.close();
cout << "File closed." << endl;
for (int i = 0; i <= 6; ++i)
{
cout << _arr[i].id << ". " << _arr[i].name << endl;
}
}
else
{
cout << "Entered Read Segment." << endl;
ifstream in; // open file
in.open("myfile.dat", ios::in | ios::binary);
if (!in.is_open())
{
cout << "Could not open file for reading." << endl;
system("PAUSE");
return 0;
}
cout << "File is open for reading." << endl;
int i = 0; // set iterator
char bytes[4];
in.read(bytes,4); // get first 4 bytes
while (!in.eof())
{
int n = 0;
for (int j = 0; j <= 3; j++, n << 8) // convert to integer
n = n | (bytes[j] & 0xFF);
_arr[i].id = n; // set id
char *t = new char; // allocate a single char memory_block
in.read(t,1); // get first letter of string
while (*t != '\0')
{
_arr[i].name.push_back(*t);
in.read(t,1); // get next letter of string.
}
delete t; // free up block
i++; // increase iterator
in.read(bytes,4); // get next 4 bytes
}
in.close();
cout << "File closed." << endl;
for (int i = 0; i <= 6; ++i)
{
cout << _arr[i].id << ". " << _arr[i].name << endl;
}
}
delete [] _arr;
system("PAUSE");
return EXIT_SUCCESS;
}
|