Copy native memory to a Java String. The encoding used is obtained form Native#getDefaultStringEncoding(). @param offset byte offset from pointer to start reading bytes @return the String value being pointed to
(long offset)
| 667 | * @return the <code>String</code> value being pointed to |
| 668 | */ |
| 669 | public String getString(long offset) { |
| 670 | return getString(offset, Native.getDefaultStringEncoding()); |
| 671 | } |
| 672 | |
| 673 | /** |
| 674 | * Copy native memory to a Java String using the requested encoding. |