📄 jnibytearray.cpp
字号:
/** * @copyright * ==================================================================== * Copyright (c) 2003 CollabNet. All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://subversion.tigris.org/license-1.html. * If newer versions of this license are posted there, you may use a * newer version instead, at your option. * * This software consists of voluntary contributions made by many * individuals. For exact contribution history, see the revision * history and logs, available at http://subversion.tigris.org/. * ==================================================================== * @endcopyright * * @file JNIByteArray.cpp * @brief Implementation of the class JNIByteArray */#include "JNIByteArray.h"#include "JNIUtil.h"/** * Create a new object * @param jba the local reference to the java byte array * @param flag that the underlying byte array reference should be deleted at * destruction */JNIByteArray::JNIByteArray(jbyteArray jba, bool deleteByteArray){ m_array = jba; m_deleteByteArray = deleteByteArray; if(jba != NULL) { // get the bytes JNIEnv *env = JNIUtil::getEnv(); m_data = env->GetByteArrayElements(jba, NULL); } else { m_data = NULL; }}/** * destroy the object */JNIByteArray::~JNIByteArray(){ if(m_array != NULL) { // release the bytes JNIUtil::getEnv()->ReleaseByteArrayElements(m_array, m_data, JNI_ABORT); if(m_deleteByteArray) // and if needed the byte array JNIUtil::getEnv()->DeleteLocalRef(m_array); }}/** * returns the number of bytes in the byte array * @return the number of bytes */int JNIByteArray::getLength(){ if(m_data == NULL) { return 0; } else { return JNIUtil::getEnv()->GetArrayLength(m_array); }}/** * returns the bytes of the byte array * @return the bytes */const signed char * JNIByteArray::getBytes(){ return m_data;}/** * returns is the byte array was not set * @return if the byte array was not set */bool JNIByteArray::isNull(){ return m_data == NULL;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -