\"Auto increment\" alphabet in Java - is this possible? From A to Z without a third-party library?
You are looking for something like this:
for( int i = 'a'; i < 'z'; i++ ) System.out.println((char)i); // Cast int to char