1 public class Solution { 2 public String replaceSpace(StringBuffer str) { 3 return str.toString().replace(" ", "%20"); 4 } 5 }