static String replace(String mystring,String content, int location){
//mystring 为原来字符串,content为添加的字符,location为添加的位置
return mystring.substring(0, location)+content+mystring.substring(location+1);}
static String replace(String mystring,String content, int location){
//mystring 为原来字符串,content为添加的字符,location为添加的位置
return mystring.substring(0, location)+content+mystring.substring(location+1);