alejosoft respondió:
puedes usar el metodo String.split(","), asi: String xy = "125,155"; // aqui le decimos que separe por la coma String [] xyVector = xy.split(","); int x = Integer.parseInt(xyVector[0]); int y = Integer.parseInt(xyVector[1]); Y eso es todo... suerte...