Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6561571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:36:17+00:00 2026-05-25T13:36:17+00:00

I am writing an applet to wrap a proprietary .dll that can be used

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T13:36:17+00:00Added an answer on May 25, 2026 at 1:36 pm

    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);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing an Applet that makes some JSON-RPC calls. I'm using the Google JSON
I'm writing a java applet with a reset button so that users can restart
I'm writing an applet that's supposed to show both English and Japanese (unicode) characters
I have am writing a small game using Applet. I want to be able
Writing htaccess that allows me to remove index.php from the URL can confuse search
Writing a sound control applet with GUI that communicates with a device via USB.
I've writing a Gnome window-switcher applet in PyGtk+ using menu items to represent the
I have an applet, which I was writing in Java. Recently, I thought that
I'm writing an applet in python for gnome2 that checks for new emails in
I am writing an applet that will randomly pick 10 cards and show them

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.