String replaceAll doesn't like commas



Why doesn't the following turn "Bubba, Inc." into "Bubba\, Inc."?

String test = "Bubba, Inc.";
test = test.replaceAll(",", "\\,");
.