예제 #1
0
파일: JavaIO.cpp 프로젝트: fashao/simpleJNI
void JFileOutputStream::New(JString& path, jboolean append) {
	CallConstructorMethod("java/io/FileOutputStream", "(Ljava/lang/String;Z)V", path.GetJObject(), append);
}
예제 #2
0
파일: JavaIO.cpp 프로젝트: fashao/simpleJNI
void JFileInputStream::New(JString& path) {
	CallConstructorMethod("java/io/FileInputStream", "(Ljava/lang/String;)V", path.GetJObject());
}
예제 #3
0
void JInteger::New(JString& string) {
	CallConstructorMethod("java/lang/Integer", "(Ljava/lang/String;)V", string.GetJObject());
}