JNA:如何访问struct中的struct数组?

我正在尝试访问struct中的struct数组。这是相关的C代码减少到了问题:
typedef struct {
  int a;
  int b;
} fileinfo_t;

typedef struct {
  fileinfo_t **file;
  int max_files;
} project_t;
在C中访问数组就像这样简单:
int var_a_of_file_0 = project.file[0].a;
int var_b_of_file_1 = project.file[1].b;
我如何在Java中实现它?我问这个问题是因为我是JNA的新手。到目前为止,我阅读了JNA文档,并尝试了每个与我的问题有关但但没有运气的例子...... 我使用JNAerator转换头文件。如果结果是正确的,我不知道shure:
package test;
import com.ochafik.lang.jnaerator.runtime.LibraryExtractor;
import com.ochafik.lang.jnaerator.runtime.MangledFunctionMapper;
import com.ochafik.lang.jnaerator.runtime.Structure;
import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.NativeLibrary;
import com.sun.jna.ptr.PointerByReference;
/**
 * JNA Wrapper for library <b>test</b><br>
 * This file was autogenerated by <a href="http://jnaerator.googlecode.com/">JNAerator</a>,<br>
 * a tool written by <a href="http://ochafik.free.fr/">Olivier Chafik</a> that <a href="http://code.google.com/p/jnaerator/wiki/CreditsAndLicense">uses a few opensource projects.</a>.<br>
 * For help, please visit <a href="http://nativelibs4java.googlecode.com/">NativeLibs4Java</a> , <a href="http://rococoa.dev.java.net/">Rococoa</a>, or <a href="http://jna.dev.java.net/">JNA</a>.
 */
public interface TestLibrary extends Library {
    public static final java.lang.String JNA_LIBRARY_NAME = LibraryExtractor.getLibraryPath("test", true, test.TestLibrary.class);
    public static final NativeLibrary JNA_NATIVE_LIB = NativeLibrary.getInstance(test.TestLibrary.JNA_LIBRARY_NAME, com.ochafik.lang.jnaerator.runtime.MangledFunctionMapper.DEFAULT_OPTIONS);
    public static final TestLibrary INSTANCE = (TestLibrary)Native.loadLibrary(test.TestLibrary.JNA_LIBRARY_NAME, test.TestLibrary.class, com.ochafik.lang.jnaerator.runtime.MangledFunctionMapper.DEFAULT_OPTIONS);
    public static class fileinfo_t extends Structure<fileinfo_t, fileinfo_t.ByValue, fileinfo_t.ByReference > {
        public int a;
        public int b;
        public fileinfo_t() {
            super();
        }
        public fileinfo_t(int a, int b) {
            super();
            this.a = a;
            this.b = b;
        }
        protected ByReference newByReference() { return new ByReference(); }
        protected ByValue newByValue() { return new ByValue(); }
        protected fileinfo_t newInstance() { return new fileinfo_t(); }
        public static fileinfo_t[] newArray(int arrayLength) {
            return Structure.newArray(fileinfo_t.class, arrayLength);
        }
        public static class ByReference extends fileinfo_t implements Structure.ByReference {

        };
        public static class ByValue extends fileinfo_t implements Structure.ByValue {

        };
    };
    public static class project_t extends Structure<project_t, project_t.ByValue, project_t.ByReference > {
        /// C type : fileinfo_t**
        public PointerByReference file;
        public int max_files;
        public project_t() {
            super();
        }
        /// @param file C type : fileinfo_t**
        public project_t(PointerByReference file, int max_files) {
            super();
            this.file = file;
            this.max_files = max_files;
        }
        protected ByReference newByReference() { return new ByReference(); }
        protected ByValue newByValue() { return new ByValue(); }
        protected project_t newInstance() { return new project_t(); }
        public static project_t[] newArray(int arrayLength) {
            return Structure.newArray(project_t.class, arrayLength);
        }
        public static class ByReference extends project_t implements Structure.ByReference {

        };
        public static class ByValue extends project_t implements Structure.ByValue {

        };
    };
}
任何帮助,将不胜感激。     
已邀请:
由于结构数组不会覆盖包含结构的内存,因此您需要该字段的指针或等效类型。然后,您可以从基指针手动派生所需的结构。 但是,我不认为您的使用示例有效。 用“[0]”索引后,你有一个指向fileinfo_t的指针,所以你必须使用以下内容(你实际上是用C编译了你的例子吗?):
int var_a_of_file_0 = project.file[0]->a;
int var_b_of_file_1 = project.file[1]->b;
最终你如何提取实际结构取决于它们在内存中的排列方式,这在你当前的解释中是模棱两可的。     

要回复问题请先登录注册