jniutf.c: New file.
2003-11-13 Tom Fitzsimmons <fitzsim@redhat.com> * libjava.jni/jniutf.c: New file. * libjava.jni/jniutf.java: New file. * libjava.jni/jniutf.out: New file. From-SVN: r73569
This commit is contained in:
parent
83913cb559
commit
d794fb9fbc
4 changed files with 32 additions and 0 deletions
16
libjava/testsuite/libjava.jni/jniutf.java
Normal file
16
libjava/testsuite/libjava.jni/jniutf.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
public class jniutf
|
||||
{
|
||||
native void printString (String str);
|
||||
|
||||
static
|
||||
{
|
||||
System.loadLibrary ("jniutf");
|
||||
}
|
||||
|
||||
public static void main (String[] args)
|
||||
{
|
||||
|
||||
String s1 = new String("\u3040\u3041\u3042\u3043\u3044\u3045\u3046\u3047\u3048\u3049\u304A\u304B\u304C\u304D\u304E\u304F\u3050\u3051\u3052\u3053\u3054\u3055\u3056\u3057\u3058\u3059\u305A\u305B");
|
||||
new jniutf().printString (s1);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue