传递给本机代码的字符串字节数组末尾出现乱码

发布于 2024-12-04 16:51:46 字数 583 浏览 0 评论 0原文

我正在编写一个小程序来包装可在浏览器中使用的专有 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞觅青森が 2024-12-11 16:51:46

不,String.getBytes()只是返回字符串编码形式的字节。

请注意,除非您指定编码,否则它还使用平台默认编码,并且默认可能不是您想要的。

如果你想要一个末尾带有“0”字节的数组,你可以使用:

byte[] data = outfile.getName().getBytes(encoding);
byte[] padded = new byte[data.length + 1];
System.arraycopy(data, 0, padded, 0, data.length);

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:

byte[] data = outfile.getName().getBytes(encoding);
byte[] padded = new byte[data.length + 1];
System.arraycopy(data, 0, padded, 0, data.length);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文