約62,900件1ページ目

日本語のみで絞り込む

2011/9/22 -The NDK fopen() will open resources in the emulator or on the phone, not in your development workspace! To try this, for example in the ...

There is absolutely no difference in functionality for accessing files via either java or the NDK (the java APIs are just wrappers for calling the native file ...

I'm trying to save a byte array to a file, but not successful. Here is the code I tried FILE * pFile; pFile = fopen ( "my.bin" , "wb" );

2020/7/1 -主に開発時に, Android + C/C++ で fopen, std::ifstream などで実機上のファイルの読み書きをしたい. SDK level 28 でコンパイルし, ...

2024/4/17 -This function performs no validation of the Unix file descriptor argument, fd. Android uses the value -1 to represent an invalid file descriptor ...

2022/9/11 -A better option is to pass open file descriptor to native code and then read from it the way you want. In this way you can handle cases when ...

2024/1/3 -The NDK supports multiple C++ runtime libraries. This document provides information about these libraries, the tradeoffs involved, and how to use them.

2022/11/18 -For reading image files, the usual approach is to read files using Java APIs that are available in Android SDK or use higher level abstractions like MediaStore ...

This repository contains sample apps that use the Android NDK. For an explanation of the layout of this repository, see ARCHITECTURE.md.

Actions-Gitignore-Issues 16-Pull requests 5

2018/11/4 -With this trick, you can then fopen() and fread() your assets, and have the assetmanager do all the work under water. Share.