1. What class and method would you use to read a few pieces of data that are at known positions near the end of a large file?
2. When invoking
format, what is the best way to indicate a new line?3. How would you determine the MIME type of a file?
4. What method(s) would you use to determine whether a file is a symbolic link?
1. Write an example that counts the number of times a particular character, such as
e, appears in a file. The character can be specified at the command line. You can usexanadu.txtas the input file.2. The file
datafilebegins with a singlelongthat tells you the offset of a singleintpiece of data within the same file. Write a program that gets theintpiece of data. What is theintdata?