وماهو عملها بشكل عام ومتى وكيف تستخدم
private String readName(RandomAccessFile file) throws IOException
{
char name[]=new char[15],temp;
for (int i=0;i<name.length;i++){
temp=file.readChar();
name[i]=temp;
}
return new String(name).replace('\0',' ');
}