Development Java Tutorial

public class MainClass {
  public static void main(String[] arg) {
    StringBuffer phrase = new StringBuffer("one two three four");
    phrase.setCharAt(3, 'Z');
    System.out.println(phrase);
  }
}
oneZtwo three four