Thanks andbin
Well, I have a task to draw shapes beside each other based on Object-Id, these shapes are curves(Bezier Cubic Curve),they get those coordinates by using inkscape software to get vector graphics points(curves), to get that, the file wil be saved in .svg format which can open by any editor (such as notepad), this is an example of it
HTML Code:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<path
d="M 457.61616,470.82943
C 458.41016,425.70843 427.74316,392.55343 403.93516,370.91243
C 399.48516,366.83843 398.54916,368.02743 397.41516,372.27043
C 394.75116,382.25643 392.96616,392.69543 391.09516,402.03043
C 390.35916,405.62343 389.79116,406.92443 392.62616,409.52743
C 406.00316,421.83343 442.19716,458.07143 444.89016,482.76843
C 431.76716,528.31343 393.39116,574.56743 350.22516,594.56743
C 316.63916,610.12643 278.88716,614.34043 242.18316,610.35243
C 232.12112,609.27843 228.38012,619.29143 238.47016,621.92243
C 274.01216,631.28543 320.32416,637.73643 356.57416,628.91043
C 420.03416,613.46343 456.48216,533.71643 457.61616,470.82943" />
</svg>
Then they stored these coordinates in MySQL database (and all other coordinates)in data-type of MEDIUM-TEXT, like the above format.
i hope my explanation to the matter is clear ?
What the help i want how to retrieve these coordinates from MySQL database to draw shapes on JFrame ?