- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {BufferedReader b =
InputStream in;new BufferedReader(new InputStreamReader(in))
Reader in;new BufferedReader(in)
File file;new BufferedReader(new FileReader(file))
- Smart code suggestions by Codota
}
public static void testUpperCase() { String[] test = new String[]{"xyz", "HITHERE", "123aa", "aSSS", "yothere"};//NOI18N for (int i = 0; i < test.length; i++) { System.out.println(test[i] + " >>> " + UpperCaseFirstLetter(test[i]));//NOI18N } }