Home Answers Viewqa Java-Beginners Java Binary data file

 
 


Akash Rana
Java Binary data file
0 Answer(s)      3 years and 3 months ago
Posted in : Java Beginners

Hi,

I have a binary data file(binfile.data) and the file has what is commonly referred to as variable length records.Specifically the format of the file is:

HEADER SECTION//RECORD
----------------------
----------------------
DATA SECTIONS//RECORDS


The DATA is made up of four main sections:

-some number of consecutive int values
-some number of consecutive long values
-some number of consecutive float values
-some number of consecutive double values

The HEADER section is formed as four consecutive integer:

1 number of ints in 1st data section
2 number of longs in 2nd data section
3 number of floats in 3rd data section
4 number of doubles in 4th data section

Now I have to count number of ints,longs,floats and doubles in the binary file.I have to do this using java.I tried to figure out the correct solution but still having some problems.

Can anyone help?
View Answers









Related Pages:
Java Binary data file - Java Beginners
Java Binary data file  Hi, I have a binary data file(binfile.data) and the file has what is commonly referred to as variable length records.Specifically the format of the file is: HEADER SECTION//RECORD
Java File Binary
Java File Binary In this section, you will learn how to write numeric data into the binary file. Description of code: Numeric data converts compactly... primitive data into the file. Here is the code: import java.io.*; public
Java Write To File Binary
Java Write To File Binary In this tutorial you will learn how to write to binary file. A binary file is a file into which the bit patterns of mostly data types can be formed to a byte of 8 bits. Write to a binary file in java
Java read binary file
Java read binary file  I want Java read binary file example code... at Reading binary file into byte array in Java. Thanks   Hi, There is many more examples at Java File - Learn how to handle files in Java with Examples
Reading binary file into byte array in Java
Example code of reading binary file into byte array in Java This example shows you how to read a binary file into byte array from Java program. This type... and use the byte array data for further processing. To the binary file into byte
java binary file io example
java binary file io example  java binary file io example
How to write in Binary file in Java programming language
How to write in Binary file in Java programming language  I need some help about Java programming. Please explain me "How to write in Binary file in Java programming language
JAVA: Recusrion, Binary Search
JAVA: Recusrion, Binary Search  I want to learn about Binary Search... and restored to/from a file. For all the search functionalities you are to implement it using a recursive implementation of Binary Search. For the cases when more than
Convert Binary to Hexadecimal
;  In this section, you will learn to convert binary data... the binary data into hexadecimal.  Description of the program: This program takes a binary data from user, which is a string type that is  converted
Convert Hexadecimal into Binary and Long
the hexadecimal data into the binary and long format. The java.lang package provides the functionality to convert a hexadecimal to binary and long type data.  Code... into the binary and long. At run time this program asks for a  a hexadecimal data
Java binary to decimal
Java binary to decimal       This Tutorial helps you to know the code for Java binary... you in understanding a how to get a 'Java binary to decimal'. For this we have
Convert integer type data into binary, octal and hexadecimal
Convert integer type data into binary, octal and hexadecimal... will learn how to convert an integer type data into binary, octal and hexadecimal... into these. toBinaryString() method converts integer type data into binary
Convert Number to Binary
is used for converting an integer type data into a binary. Here is the code... Convert Number to Binary       In this section, you will learn to convert a number to a binary (0,1
Convert Decimal into Binary
representation of  integer values which represents the data in binary. The base... into binary. The java.lang package provides the functionality to convert  a decimal number into a binary number.  Description of program: This program
Parsing Binary Data in PHP - PHP
Parsing Binary Data in PHP  Is there a better library for working with binary data in PHP
send Binary Data by doGet or doPost?
send Binary Data by doGet or doPost?  which method in doGet or doPost is use to send binary date to server
binary tree
://www.roseindia.net/java/java-get-example/java-binary-tree-code.shtml http://www.roseindia.net/java/java-get-example/java-binary-tree-insert.shtml...binary tree  can a binary tree be implemented with out comparing
Java Array Binary Search example
Java Array Binary Search It is a method for searching the array element... example demonstrates how to do a binary search on the Java array object... the binary search algorithm.  It returns the index of the found element
octal to binary
octal to binary  i want to know how to convert a octal to binary number   Here is a java example that converts octal to binary. import... binary=Integer.toBinaryString(i); System.out.println(binary
Binary Search - Java Beginners
Binary Search  how to use Binary think in java give me the Binary Search programm thx
Convert Binary to Decimal
to convert the integer data into the binary to decimal.  Code Description... Convert Binary to Decimal       In this section, you will learn how to convert a  binary
parse a file into primitive binary format
parse a file into primitive binary format  Hi, I need help converting an audio file or any other file to its primitive binarty format, and when I read the inputstream I find it some integers and I don't know its binary
Java binary tree code
Java binary tree code     ... especially in mathematics and Boolean. The java binary tree find its application in games. Binary Tree is basic concept of data structure. Understand
Java binary tree insert
Java binary tree insert       The Binary Tree insert is specialized use of binary tree... to describe you a code that helps you in understanding a code  Java binary
BINARY TO DECIMAL - Java Beginners
BINARY TO DECIMAL  HELP ME PLSS. PROGRAM THAT CONVERTS BINARY TO DECIMAL  Hi friend, Program to convert Binary To Decimal : import... (System.in); System.out.print ("Enter a binary number "); String str
Java Xml Data Store
Java Xml Data Store  I have to do this project and i'm finding it so... be followed up and/or purchased. You will need to store the data in a local binary or XML file. As a good Java programmer you will use correct Object-Oriented
Java read file
There are many ways to read a file in Java. DataInputStream class is used to read text File line by line. BufferedReader is also used to read a file in Java when the file in huge. It is wrapped around FileReader. Java supports reading
Binary to decimal - Java Beginners
Binary to decimal  Need help pls.. i cannot run this program... pls... = Integer.parseInt(JOptionPane.showInputDialog("Input Binary:")); String c = args[0...; String value = JOptionPane.showInputDialog("Input Binary"); int len
binary search - Java Beginners
binary search  Write a java program to search an array by using recursive binary search.  /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package
Binary Search!!! - Java Beginners
Binary Search!!!  Hi Sir, My question is quite simple. im only getting "ArrayIndexOutOfBoundsException : 10" in the if statement which is inside the 1st while loop. How can i get rid of it? The if statement is btw
binary distributions - Java Server Faces Questions
binary distributions  what are binary distributions
File I/O - Text Files
Java NotesFile I/O - Text Files Java can read several types of information from files: binary, Java objects, text, zipped files, etc. One of the most common problems is reading lines of text. Example: Copy one file to another
binary search tree from text file
binary search tree from text file  How so I go about constructing a binary search tree from a text file, which has letters and numbers, which must be sorted and printed in ascending order. E.g. Text file contents 3 apples pears
Data extraction from an image file.
Data extraction from an image file.  I have made an image... data from the the image which also include deleted data.Can i used java to extract these data from the image file? Which are the libraries to be used
pass data from java frame to file
pass data from java frame to file  i want to write the data to file, and data must be copy from java frame java frame contains 7-8 labels n below that 1 table. i want store all this data to 1 file. plz help me
java program to insert data into a file and count the number of words from the file???????
java program to insert data into a file and count the number of words from the file???????  java program to insert data into a file and count the number of words from the file
Problem with appending data to the end of file
successfully</h1>"); %> </body> </html> JAVA CLASS FILE CODE... the data(via the browser),the data that i entere is printed on the text file...Problem with appending data to the end of file  MY JSP CODE
file
file  hi i want read special line of file. what am i doing ? I write a code but is false in this programm i want make tree with java but i should read data from file. please help me! void maketree(BtNode root,int i) throws
Java Convert Octal to Binary
Java Convert Octal to Binary In this tutorial, you will learn how to convert octal to binary. Java has provide different ways to change the number system of different numbers. You can convert and decimal to octal, decimal to binary
How To Read File In Java
How To Read File In Java In this section we will discuss about about how data of a file can be read in Java. A file can contain data as bytes, characters, binary data etc. To read a file in Java we can use following of the classes
Fetching the exact data from file using java
Fetching the exact data from file using java  **hi ... i am having one .lst file.. that file consists of instructions and opcodes.. now i want to fetch only the opcode from that file.. could u pls anyone guide me this using java
Java Conversion
, you will learn to convert binary data into hexadecimal.  The java.lang package provides the functionality to convert the binary data into hexadecimal... type data.     Convert Hexadecimal into Binary
binary
binary  Hi I want to write a program in pascal that ask a user to input a decimal number and then return its binary equivalent in the minimum number of bits required to repesent the number. Thks
file attach
file from the data base where the contents of file are stored int binary format...file attach  how pick up the file from database and attach it to the mail in java   Hi, Here is the code to read image (file) from
binary search tree
binary search tree  how can i make binary search tree? i want write a code that make dictionary with binary search tree data structure.please help me?   class bnode { String key; bnode left; bnode right
hex to binary convertion in java - Java Beginners
hex to binary convertion in java  HI, im doin a application wch requires to send a binary message to other mobiles, so i need to convert the hex values to binary format.So the binary format could either be a ringtone
hex to binary convertion in java - Java Beginners
hex to binary convertion in java  HI, im doin a application wch requires to send a binary message to other mobiles, so i need to convert the hex values to binary format.So the binary format could either be a ringtone
hex to binary convertion in java - Java Beginners
hex to binary convertion in java  HI, im doin a application wch requires to send a binary message to other mobiles, so i need to convert the hex values to binary format.So the binary format could either be a ringtone
how to store data in a text file - Java Beginners
how to store data in a text file  Hi friends, I want to know, how we can save the data in a .txt file using swings....... for example, i want to store the arraylist data of swing program into a text file.......and also i want
Inserting data in Excel File - Java Beginners
Inserting data in Excel File  Dear Sir, How can we fill the excel with fetched data from the database like Oracle, DB2? Is it possible to create an excel with filled data? Kindly give me the solutions to questions