代码搜索:jstring
找到约 391 项符合「jstring」的源代码
代码结果 391
www.eeworm.com/read/260708/4328913
cpp amzijni.cpp
/* Amzi! interface DLL for Java 1.2
Note - Both Java and Amzi! are Unicode based, so the string
conversion routines used here are the jstring to Unicode ones,
not the UTF-8 ones. To buil
www.eeworm.com/read/254864/4379631
c simple_bundle_foo_method.c
#include "org_ungoverned_osgi_bundle_simple_SimpleBundle.h"
JNIEXPORT jstring JNICALL
Java_org_ungoverned_osgi_bundle_simple_SimpleBundle_foo
(JNIEnv *env, jobject obj)
{
char *
www.eeworm.com/read/247586/4480682
c mynewstring.c
#include
#include
#include "MyNewString.h"
/* This code is OK */
jstring
MyNewString(JNIEnv *env, jchar *chars, jint len)
{
static jclass stringClass = NULL;
jmethodID
www.eeworm.com/read/229812/4744389
c jstrnicm.c
#include
#include
void main()
{
printf( "%d\n", jstrnicmp( "abcdef", "ABCXXX", 10 ) );
printf( "%d\n", jstrnicmp( "abcdef", "ABCXXX", 6 ) );
printf( "%d\n"
www.eeworm.com/read/229812/4744392
c jstrncmp.c
#include
#include
void main()
{
printf( "%d\n", jstrncmp( "abcdef", "abcDEF", 10 ) );
printf( "%d\n", jstrncmp( "abcdef", "abcDEF", 6 ) );
printf( "%d\n",
www.eeworm.com/read/229812/4744427
c jstrcmp.c
#include
#include
void main()
{
printf( "%d\n", jstrcmp( "abcdef", "abcdef" ) );
printf( "%d\n", jstrcmp( "abcdef", "abc" ) );
printf( "%d\n", jstrcmp( "abc
www.eeworm.com/read/229812/4744432
c jstrrev.c
#include
#include
JCHAR source[] = { "A sample STRING" };
void main()
{
printf( "%s\n", source );
printf( "%s\n", jstrrev( source ) );
printf( "%s\n", js
www.eeworm.com/read/229812/4744433
c jstrncpy.c
#include
#include
void main()
{
JCHAR buffer[15];
printf( "%s\n", jstrncpy( buffer, "abcdefg", 10 ) );
printf( "%s\n", jstrncpy( buffer, "1234567", 6 ) )
www.eeworm.com/read/229812/4744435
c jstrcat.c
#include
#include
#include
void main()
{
JCHAR buffer[80];
strcpy( buffer, "Hello " );
jstrcat( buffer, "world" );
printf( "%s\n", buffer
www.eeworm.com/read/304657/3789942
h java_util_vmtimezone.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#ifndef __java_util_VMTimeZone__
#define __java_util_VMTimeZone__
#include
#ifdef __cplusplus
extern "C"
{
#endif
JNIEXPORT jstring JN