ฉันมีสายอักขระที่เรียกว่า persons.name
ฉันต้องการแทนที่ DOT .
ด้วย/*/
เช่นเอาต์พุตของฉันจะเป็นpersons/*/name
ฉันลองใช้รหัสนี้:
String a="\\*\\";
str=xpath.replaceAll("\\.", a);
ฉันได้รับ StringIndexOutOfBoundsException
ฉันจะแทนที่จุดได้อย่างไร
xpath.replaceAll("\\\\.", "/*/")
?