Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static boolean isPlainText(String fileFullName) {
boolean isPlainText = false;
if (fileFullName.endsWith(".json")) {
isPlainText = true;
}
return isPlainText;
}
}