Draws the text given by the specified character array, using this graphics context's current font and color. The baseline of the first character is at position (x, y) in this graphics context's coordinate system.
@param data the array of characters to be drawn
@param offset the start offset in the data
@param length the number of characters to be drawn
@param x the x coordinate of the baseline of the text
@param y the y coordinate of the baseline of the text
@throws NullPointerException if data is null.
@throws IndexOutOfBoundsException if offset orlengthis less than zero, or offset+length is greater than the length of the data array.
@see java.awt.Graphics#drawBytes
@see java.awt.Graphics#drawString
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.