- (void)viewDidLoad
{
    //NSMutableData *data;
    NSFileManager *fm = [NSFileManager defaultManager];
    NSString *path = [fm currentDirectoryPath];
    //NSArray *dirarray; 
    infile_ = [NSFileHandle fileHandleForReadingAtPath:@"/jia"];
    NSMutableString *string = [[NSMutableString alloc]init];
    if (infile_ != nil) {
    NSMutableArray *temparray = [[NSMutableArray alloc]init];
    while ([infile_  offsetInFile] == [infile_ seekToEndOfFile]) 
    {
            NSData *tempdata = [infile_ readDataOfLength:1];
            string = (NSMutableString *)tempdata;
            //[data appendData:tempdata];
        [temparray addObject:string];
        //data = nil;
    }
    self.array = temparray;
    }
    else
    {
        //dirarray = [fm directoryContentsAtPath:path];
        text_.text = path;
    }
    [super viewDidLoad];
}