传递给本机代码的字符串字节数组末尾出现乱码
我正在编写一个小程序来包装可在浏览器中使用的专有 .dll。为了实现这一点,我正在使用 JNA。 .dll 连接到支票扫描仪外围设备,并可以从设备内存中提取图像。
我必须使用 JNA 在 Java 中进行 Windows API 调用才能获取图像:
// DEVICE is the JNA Library interface
HANDLEByReference img = new HANDLEByReference();
File outfile = new File("my_image.bmp");
DEVICE.saveImage(img.getValue(), outfile.getName().getBytes());
当代码保存图像时,我会得到一个类似以下名称的图像:
C:\Users\user\workspace\JavaProject\bin\my_image.bmpó_¯=Pá
注意末尾的乱码
是吗在字符串上调用 getBytes() 时,Java 返回以 NULL 结尾的 byte[] 数组?
I am writing an applet to wrap a proprietary .dll that can be used in the browser. To achieve this, I am using JNA. The .dll connects to a check scanner peripheral, and can pull images from the devices memory.
I have to make a Windows API call in Java, using JNA, to get the image:
// DEVICE is the JNA Library interface
HANDLEByReference img = new HANDLEByReference();
File outfile = new File("my_image.bmp");
DEVICE.saveImage(img.getValue(), outfile.getName().getBytes());
When the code saves the image, I get one named something like:
C:\Users\user\workspace\JavaProject\bin\my_image.bmpó_¯=Pá
note the gibberish at the end
Does Java return a NULL terminated byte[] array when calling getBytes() on a String?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,
String.getBytes()
只是返回字符串编码形式的字节。请注意,除非您指定编码,否则它还使用平台默认编码,并且默认可能不是您想要的。
如果你想要一个末尾带有“0”字节的数组,你可以使用:
No,
String.getBytes()
just returns the bytes in the encoded form of the string.Note that it also uses the platform default encoding unless you specify the encoding, and that default may not be what you want.
If you want an array with a "0" byte at the end, you could use: