Returns an array of String based on a native array of char . The array length is determined by a NULL-valued terminating element. The strings are decoded using the encoding returned by Native#getDefaultStringEncoding().
(long offset)
| 774 | * Native#getDefaultStringEncoding()}. |
| 775 | */ |
| 776 | public String[] getStringArray(long offset) { |
| 777 | return getStringArray(offset, -1, Native.getDefaultStringEncoding()); |
| 778 | } |
| 779 | |
| 780 | /** Returns an array of <code>String</code> based on a native array |
| 781 | * of <code>char *</code>, using the requested encoding. The array length |