Hi Ankita,
You can use the filter "Read ASCII Data", which will read any generic column-orientated text file, such as an FFT-type input or output file. When you select the file in the filter, a wizard will pop up that walks you through the process of setting up the data reading. You can do things like skip header lines, define the tuple dimensions (216x216x216 in your case), selectively only read in certain columns (for example, you can skip the x,y,z columns as these indices aren't really needed), and select the type of data for the columns (int32_t for the grain Ids and phase Ids, etc.). I've successfully used this filter before to read in FFT text files, so it should generally work.
That filter reads the data into DREAM.3D, but you'll need to manually create a place to "put" the data. First thing is to create a data container ("Create Data Container" filter). Then create an attribute matrix ("Create Attribute Matrix" filter). When creating the attribute matrix, you'll want to create a "Cell" type (since the data will sit on the voxels, or cells), and enter tuple dimensions of 216x216x216. You can do this by adding columns to the widget in the GUI (3 total) and entering 216 in each of them. Finally, you'll need to create an image geometry that defines the FFT grid ("Create Geometry (Image)" filter). In this filter, you'll again want to set the dimensions to 216x216x216. You can also set the grid resolution and origin, if necessary. Then, you can run the "Read ASCII Data" filter to import the raw data, making sure the place the data into the attribute matrix you created.
hope that helps,
-Sean