WRITE A JAVA PROGRAM !!
PLEASE NOTE !! INSTRUCTIONS BELOW !!
Write a method which reads from the created csv file andreturn all the employee details by taking employeeId asinput:
ex : if input : 200
output :
employeeId = 200
dbId = 512
privileged = TRUE
service = FALSE
inactive = FALSE
groupmbr = PayrollAccess
username = Bob Fields
JobFunction = Administrator
JobFunctionCode = 3000
JobFunctionStatus = Active
BELOW IS INFORMATION FOR THE CSV FILE:
employeeId,dbId,privileged,service,inactive,groupmbr,userName,JobFunction,JobFunctionCode,JobFunctionStatus
200,512,TRUE,FALSE,FALSE,PayrollAccess,BobFields,Administrator,3000,Active
210,532,TRUE,FALSE,FALSE,AdminAccess,AnnParson,Administrator,3001,Inactive
220,552,TRUE,FALSE,FALSE,AcctsPayableAccess,ImaShields,Engineer,1002,Active
230,572,TRUE,FALSE,FALSE,PayrollAccess,ChrisStephens,Administrator,3002,Inactive
211,534,FALSE,FALSE,TRUE,PayrollAccess,PatAnderson,Developer,2003,Active
212,536,FALSE,FALSE,TRUE,PayrollAccess,ShelleyPeterson,Administrator,3003,Inactive
213,538,FALSE,FALSE,FALSE,PayrollAccess,BrianMurray,Engineer,1004,Inactive
214,540,FALSE,FALSE,FALSE,PayrollAccess,PhilGrate,Engineer,1005,Active
221,554,FALSE,FALSE,FALSE,AcctsPayableAccess,VictorFuzz,Administrator,3004,Inactive
222,556,FALSE,FALSE,FALSE,AcctsPayableAccess,AlanSnow,Developer,2004,Active
223,558,FALSE,FALSE,FALSE,AcctsPayableAccess,ValerieWilliams,Administrator,3005,Inactive
224,560,FALSE,FALSE,FALSE,AcctsPayableAccess,BobWalters,Engineer,1006,Active
231,574,FALSE,FALSE,FALSE,AcctsReceivableAccess,SueFlynn,Developer,2005,Inactive
233,578,FALSE,FALSE,FALSE,AcctsReceivableAccess,SeanAntonini,Engineer,1007,Active
234,580,FALSE,FALSE,FALSE,AcctsReceivableAccess,TomLennon,Administrator,3006,Inactive
300,712,TRUE,TRUE,FALSE,PayrollAccess,JohnKnight,Administrator,3007,Inactive
Expert Answer
Answer to WRITE A JAVA PROGRAM !! PLEASE NOTE !! INSTRUCTIONS BELOW !! Write a method which reads from the created csv file and re…