I want assert to files using char by char comparation.
What the best way to do this? Without 3rd part libraries. Which file-reader is most performance for this?
I want assert to files using char by char comparation. What the best way
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not sure what the objection to 3rd party libraries is… no need to re-invent the wheel.
I’ve found the open-source and widely used apache.commons.io method
FileUtils.contentEquals(file1, file2)is pretty good – here’s the javadoc.