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 169675
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:40:23+00:00 2026-05-11T12:40:23+00:00

I have a FloatBuffer of known size and just want to dump the data

  • 0

I have a FloatBuffer of known size and just want to dump the data to a file (in binary) for inspection outside my app. What’s the easiest way to do this?

  • 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. 2026-05-11T12:40:24+00:00Added an answer on May 11, 2026 at 12:40 pm

    UPDATE FOR BINARY OUTPUT:

    // There are dependencies on how you create your floatbuffer for this to work // I suggest starting with a byte buffer and using asFloatBuffer() when // you need it as floats. // ByteBuffer b = ByteBuffer.allocate(somesize); // FloatBuffer fb = b.asFloatBuffer(); // There will also be endiance issues when you write binary since // java is big-endian. You can adjust this with Buffer.order(...) // b.order(ByteOrder.LITTLE_ENDIAN) // If you're using a hex-editor you'll probably want little endian output // since most consumer machines (unless you've got a sparc / old mac) are little   FileOutputStream fos = new FileOutputStream('some_binary_output_file_name'); FileChannel channel = fos.getChannel();  channel.write(byteBufferBackingYourFloatBuffer);  fos.close(); 

    TEXT OUTPUT: Since you want this to be viewable I assume you want a text file. You’ll want to use a PrintStream.

    // Try-catch omitted for simplicity  PrintStream ps = new PrintStream('some_output_file.txt'); for(int i = 0; i < yourFloatBuffer.capacity(); i++) {    // put each float on one line    // use printf to get fancy (decimal places, etc)    ps.println(yourFloagBuffer.get(i)); }  ps.close(); 

    Didn’t have time to post a full raw/binary (non-text) version of this. If you want to do that use a FileOutputStream, get the FileChannel, and directly write the FloatBuffer (since it’s a ByteBuffer)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have finally got a responsive site working (of a fashion). What I want to
have been trying couple of hours now to make my iphone app universal. The
Have one Doubt In MVC Architecture we can able to pass data from Controller
I have this code here: static ByteBuffer bytes = ByteBuffer.allocateDirect(16).order(ByteOrder.nativeOrder()); static FloatBuffer matAmbientB =
Let's say I want to upload unsigned integer and float data to the graphics
Have a WCF service in a Services directory in my asp.net web app. In
have such kind of error. When adding Redirect 301 rule to .htaccess file like:
Have just started using Google Chrome , and noticed in parts of our site,
Have just started using Visual Studio Professional's built-in unit testing features, which as I
I'm making a simple fractal viewing app for Android, just for fun. I'm also

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.