- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我遇到了 java 和 dll 问题。
我需要通过引用将字符串值传递给 dll,但是,它不成功。
public short ReadData(int block_id, int offset, int data_size,StringByReference dataBuf, IntByReference err_code);
问题是StringByReference dataBuf
,我尝试了很多方法来找到解决方案,但它不起作用。
调用函数为:
ReadData(0, 4, 13, ??? , status);
因为它没有.dll文件。
功能
`public static short Read_Data(int card_type, int block_id, int offset, int data_size, String dataBuf, IntByReference err_code){
short rc;
IntByReference status = new IntByReference(0);
int len = data_size+16;
//StringByReference dataBuf_ref = new StringByReference( spaces(data_size+16));
//StringBuilder zText = new StringBuilder ();
//zText.append(dataBuf);
dataBuf = spaces(data_size+16);
//StringByReference a = new StringByReference(dataBuf);
// StringByReference a = new StringByReference(dataBuf);
//Pointer ppp = new Memory(dataBuf.length()+1);
//ppp.setByte(len, dataBuf.getBytes()[0]);
//PointerByReference p = new PointerByReference(ppp);
//Pointer pp = null ;
//pp.setString(len, dataBuf);
//p.setValue(a.getPointer());
StringBuffer_REF z = new StringBuffer_REF(dataBuf);
//byte[] b = dataBuf.getBytes();
//Memory m = new Memory(len+1);
//m.write(0, b, 0, len);
System.out.println("Read_Data");
System.out.println("status "+status.getValue());
rc = s_ope.ReadData(block_id, offset, data_size,?????, status); /// HERE NEED HELP
// System.out.println("dataBuf_ref"+ a.getValue().replace(" ", "*"));
if(rc != 0){
System.out.println("Err Read_Data : "+rc+" - "+status.getValue());
}
err_code = status;
return rc;
}`
最佳答案
我在 this 上找到了您问题的答案地点。只需创建新的 StringByReference
java 类型,它就应该可以工作。
// This is a class that facilitates passing a String by reference to
// C library routines so that the string may be modified by the C
// routine and the modifications is reflected on JAVA side as well
// Save this in a file StringByReference.java in current directory
import com.sun.jna.ptr.ByReference;
public class StringByReference extends ByReference {
public StringByReference() {
this(0);
}
public StringByReference(int size) {
super(size < 4 ? 4 : size);
getPointer().clear(size < 4 ? 4 : size);
}
public StringByReference(String str) {
super(str.length() < 4 ? 4 : str.length() + 1);
setValue(str);
}
private void setValue(String str) {
getPointer().setString(0, str);
}
public String getValue() {
return getPointer().getString(0);
}
}
关于java - JNA 通过引用 dll 传递字符串但不返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29162569/
我正在使用 JNA 加载 native 库: MyLibrary INSTANCE = (MyLibrary) Native.loadLibrary("mylibrary.so", MyLibrary
任何人都可以为我提供一个 JNA 鼠标钩子(Hook)的工作示例,它能够在我的 Java Swing 应用程序之外跟踪鼠标移动/单击吗? 提前致谢 最佳答案 是的,这里是代码... public cl
我在哪里可以获得支持 ARM64 的 JNA 库? com.sun.jna_4.jar 包含适用于 ARM 的 native libjnidispatch.so 库,但不包含适用于 ARM64 的库。
我正在尝试使用 JNA,因为我想使用一个用 c++ 编写的 .dll,而我的其余代码是用 Java 编写的。但是,如果我尝试导入 JNA 类 Eclipse 声称“com.sun.jna.Librar
我使用以下代码从java程序控制Windows服务 public class PostgresService2 { public static void main(String[] args)
我有一个用于 C 函数 mpv_set_option_string 的 JNA Java 接口(interface),定义为: public interface MPV extends StdCall
我正在查看中央 Maven 存储库,并看到一个 net.java.dev.jna 和一个用于 JNA 的 com.sun.jna groupId。 JNA 的 github,使用 com.sun.jn
我已经开始构建一个 java 服务,它结合了 JNA 来加载 native C/C++ 库,我想在 Raspberry PI aka arm 平台上运行 java 服务。我已经成功地建立了一个稳定的服
我要离开 this如何传递 com.sun.jna.Structure 的示例包含 com.sun.jna.StringArray使用 JNA 从 Java 转换为 native C 代码,并且无法在
我正在准备 spring-boot 应用程序。然后我得到以下错误: JNA not found. native methods will be disabled. java.lang.ClassNot
遇到令人抓狂的阻塞错误: Exception in thread "main" java.lang.Error: Structure.getFieldOrder() on class com.luke
我已经下载并复制 Jna.jar 和 Platform.jar 到/usr/cassandra/apache-cassandra-1.0.7/lib 文件夹,但在 Cassandra 启动时仍然看到以
我有一个像这样的 JNA 库 stub : public interface FREngine extends Library { NativeLibrary JNA_NATIVE_LIB =
我想使用 JNAerator 为 JNA 生成一些 C++ API 函数的 Java 包装器。问题是我无法在工作时使用 JNAerator Studio 或从我的 PC 访问 Github。我只有 G
在 JNA 中,如何从 Xlib 映射联合结构,如以下 XEvent typedef union _XEvent { int type; /* must not be changed *
我正在尝试使用 JNA 从 java 运行 ShellExecute 函数。我在非 unicode 文件夹上运行 ShellExecuteA 没有任何问题 import com.sun.jna.*;
在弄清楚如何将 ClientToScreen winapi 函数与 JNA 结合使用时遇到问题。 我仍然得到窗口句柄坐标的 0, 0 输出。我引用了这个,但我确信我做得不对 https://msdn.
我有两个局部变量: Pointer output; int output_len; /* or better `size_t output_len;` */ 我需要将这些变量的指针传递到 JNA 函数
我有一个openvr binding有一段时间以来有一个小问题 基本上,每当我释放某些几何 3D 模型(基站或 Controller )的内存时,我都会时不时地收到错误: "java.lang.Err
我是 JNA 新手,我想将 DsGetDcName 方法转换为 JNA。 DWORD DsGetDcName( __in LPCTSTR ComputerName, __in LPCT
我是一名优秀的程序员,十分优秀!