The JavaStringToLocalString method of the SystemX class contains the following signatures.
JavaStringToLocalString(char Uni)
JavaStringToLocalString(char C[])
JavaStringToLocalString(char C[], int off, int len)
Converts a Java character to a character in the local code page.
public static byte JavaStringToLocalString(char Uni);
Returns the local code page string.
Uni | The Java character. |
Converts a character array to a byte array in the local code page.
public static byte[] JavaStringToLocalString(char C[]);
Returns the local representation of the array.
C | The Java character array. |
Converts a character array to a byte array in the local code page.
public static byte[] JavaStringToLocalString(char C[], int off, int len);
Returns the local representation of the array.
C | The Java character array. |
off | The starting point within the array. |
len | The number of characters to convert. |