A Photographer Is Organizing A Photo Collection About The National Parks In The Us And Would Like To Annotate The Inform 1 (29.93 KiB) Viewed 31 times
A Photographer Is Organizing A Photo Collection About The National Parks In The Us And Would Like To Annotate The Inform 2 (14.78 KiB) Viewed 31 times
A Photographer Is Organizing A Photo Collection About The National Parks In The Us And Would Like To Annotate The Inform 3 (16.98 KiB) Viewed 31 times
A photographer is organizing a photo collection about the national parks in the US and would like to annotate the information about each of the photos into a separate set of files. Write a program that reads the name of a text file containing a list of photo file names. The program then reads the photo file names from the text file, replaces the photo jpg" portion of the file names with info.txt", and outputs the modified file names Assume the unchanged portion of the photo file names contains only letters and numbers, and the text file stores one photo file name per line. If the text file is empty, the program produces no output. Ex If the input of the program is: ParkPhotos.txt and the contents of ParkPhotos.txt are: Acadia2003 photo.jpg American Samoa1989 photo.jpg BlackCanyonoftheGunnison1983_photo.jpg CarlsbadCaverns2010_photo.jpg Crater Lake1996_photo.jpg Grand Canyon1996 photo.jpg IndianaDunes1987_photo.jpg LakeClark2009 photo.jpg Redwood1980_photo.jpg Virgin Islands 2007_photo.jpg Voyageurs2006_photo.jpg WrangeliStElias1987_photo.jpg
the output of the program is: Acadia2003_info.txt American Samoa1989_info.txt BlackCanyonoftheGunnison1983_info.txt CarlsbadCaverns2010_info.txt CraterLake1996 info.txt Grand Canyon1996_info.txt IndianaDunes1987_info.txt LakeClark2009_info.txt Redwood1980 info.txt. VirginIslands 2007_info.txt Voyageurs2006_info.txt WrangellStElias1987_info.txt
1 import java.util.Scanner; 2 import java.io.FileInputStream; 3 import java.io.IOException; 4 5 public class LabProgram { 6 public static void main(String[] args) throws IOException { Scanner scnr new Scanner(System.in); 7 = 8 /* Type your code here. */ 2706O 9 10 11 } 12 }
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!