@return The default string encoding. Returns the value of the system property jna.encoding or Native#DEFAULT_ENCODING.
()
| 911 | * property <code>jna.encoding</code> or {@link Native#DEFAULT_ENCODING}. |
| 912 | */ |
| 913 | public static String getDefaultStringEncoding() { |
| 914 | return System.getProperty("jna.encoding", DEFAULT_ENCODING); |
| 915 | } |
| 916 | |
| 917 | /** |
| 918 | * @param cls The native interface type |