我正在使用swift编写代码。我正在尝试使用以下链接https://developers.google.com/drive/ios/quickstart集成google驱动器。我使用谷歌开发者指南第2步中提到的链接https://github.com/google/google-api-objectivec-client.git下载了谷歌客户端库。我能够成功运行示例代码。但我必须上传文件到谷歌驱动器。所以我使用的是queryForFilesInsertWithObject方法。但我收到错误 GTLQueryDrive'没有成员&queryaeFilesInsertWithObject' 。我的示例代码如下:
r.prix < 50
如果有任何项目可以帮助我吗?
答案 0 :(得分:3)
使用
让query = GTLQueryDrive.queryForFilesCreateWithObject(file,uploadParameters:uploadParameters)作为GTLQueryDrive
答案 1 :(得分:0)
您可以使用
jsize num_bytes = (*env)->GetArrayLength(env, array);
char * buffer;
buffer = (char *) malloc (num_bytes);
jbyte *lib = (*env)->GetByteArrayElements(env , array, 0);
memcpy ( buffer , lib , num_bytes ) ;
FILE *fp;
fp=fopen("test.png", "wb");
fwrite(buffer, sizeof(char) , num_bytes , fp);