Java中替换字符串中指定字符的方法是使用String类的replace()方法。replace()方法接受两个参数,第一个参数是要替换的字符,第二个参数是替换后的字符。示例如下:
String str = "Hello world!"; String newStr = str.replace('o', '@'); System.out.println(newStr);
输出结果为:
Hell@ w@rld!
在上面的示例中,我们替换了字符串中的字符’o’为’@'。