Represents an array of bytes

learn more… | top users | synonyms (1)

0
votes
2answers
36 views

C# Byte[] to long reverse not working

Why is this program not working? I convert a byte array to long. Then from the long I convert back to a byte array. The resulting byte array is not the same as original. class Program { static ...
1
vote
0answers
24 views

how to load OpenOffice from ByteArray in JAVA

I am trying to work with Open Office in my Java app. Based on SDK, with extra help from bootstrapconnector.jar I successfully started empty swritter and can write to the document. Now, I would like ...
0
votes
0answers
5 views

How to force sqlite3 insert random byte arrays?

I want to write vectors of arbitrary ints into an sqlite3 db. Here's a sample of what I do : packed = struct.pack("ii", [7739119, 962812]) print packed # prints '\xef\x16v\x00\xfc\xb0\x0e\x00' ...
1
vote
1answer
41 views

Convert Image into ByteArray

I know there already are plenty of post about this, but every solution I have tried so far failed. What I want is to get a Byte[] from an Image object. What I have tried so far: using (MemoryStream ...
3
votes
1answer
27 views

How to read bytes from a .wav file vb.net

I'm trying to do some work with .wav files and I've been able to play the files and play sound randomly by creating an array of bytes (see code for both below) I'd like to know if there's a method I ...
0
votes
1answer
8 views

Md5-Hash-ByteArray is working in programm but not in external validator, (need to convert it to some kind of String)

I am creating a raw MD5-Bytearray of some file and store it in a DB. Then, when I upload the file I validate the Checksum. So far everything works fine. Now I am trying to display the Checksum in ...
0
votes
0answers
18 views

how to transform time domain to frequency domain java

i got problems during finished my undergraduated thesis , i want to get frequency domain from array of byte from an audio recording . here's my code to get byte from audio which i record . ...
1
vote
1answer
33 views

How to convert base 64 string to array of bytes without data loss?

I have a base 64 string. I want to write is at as bytes of array to binary file(.dat) I used the following code to do that. Please refer. string s = ...
0
votes
0answers
30 views

Check if uploaded image is CMYK in ActionScript 3.0

Is there any way to figure this out which user uploaded image in our flex project is RGB or CMYK? Something like using byteArray and check the specific place of CMYK/RGB header on it...
0
votes
1answer
25 views

how to display a byte array as image

I converted image into grayscale then read the pixels like this for (int i = 0; i < image.getHeight(); i++) { for (int j = 0; j < image.getWidth(); j++) ...
0
votes
0answers
35 views

Open byte array in Excel with COM Interop

Well, in my project I need to use an excel file to read data from it (yes, a propper database would be better, but I cannot use one). With Microsoft.Office.Interop.Excel I open files like this: ...
0
votes
3answers
32 views

Android - Convert String to byte[]

I want to convert the string of "icon" to byte array and than to convert it to Bitmap. The problem is the image in the emulator is not displaying. I suppose I'm not doing right but I know why. I ...
0
votes
0answers
30 views

Reading “null”s from binary file C#

I wrote a small function that reads binary file to a byte array. But there is 1 bin file that when I'm reading it, it gives me "null"s (if its char[]) or zeros (if its byte[]), I see it when I'm in ...
-1
votes
2answers
33 views

hex value Textview input to byte []

I got some important question: I need to send a Hexadecimal value stored in a bye[] (max. 4 byte) witch i have typed in in my textview of my android phone application. ...
1
vote
1answer
22 views

Creating a ClassLoader to load a JAR file from a byte array

I'm looking to write a custom class loader that will load a JAR file from across a custom network. In the end, all I have to work with is a byte array of the JAR file. I cannot dump the byte array ...
-2
votes
0answers
32 views

c# 2 Threads, 1 writes to a “Queue,” 1 reads from the “Queue” [closed]

c# Note: I'm being figurative with the word "Queue" Thread A is sniffing packets on the network. As packets come in, put them into a "Queue" of some sort. Thread B reads the "Queue", does work, and ...
1
vote
1answer
53 views

com.google.gson.JsonSyntaxException: Expected BEGIN_ARRAY but was STRING

I am facing this error in parsing json data : Expected BEGIN_ARRAY but was STRING at line 1 column 1156 I could'nt find the solution. My json data is : { "project": [ { ...
0
votes
1answer
57 views

Java: Unsigned byte to int conversion works perfectly except for 129 (0x81)

I have a weird problem with unsigned byte to int conversion in Java. The Hex value 0x81 (129 in decimal) always gets interpreted wrongly as 63. Every other value works normally. Maybe this is because ...
1
vote
1answer
55 views

Perl create byte array and file stream

I need to be able to send a file stream and a byte array as a response to an HTTP POST for the testing of a product. I am using CGI perl for the back end, but I am not very familiar with Perl yet, ...
0
votes
0answers
47 views

Adding values from 2 byte arrays

I want to add signals from 2 wav files and have been converting each byte to short , dividing by 2 to avoid overflow, then add the 2 short values and then reconvert back to byte before writing to the ...
0
votes
4answers
90 views

How to convert a string to byte array

I have a string and want to convert it to a byte array of hex value using C#. for eg, "Hello World!" to byte[] val=new byte[] {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x20, 0x57, 0x6F, 0x72, 0x6C, 0x64, ...
0
votes
1answer
65 views

How do I get a bitmap image from raw Bayer image data (byte array)?

I have image data that gets acquired like so: unsigned char* imageData = NULL; GetImage(imageData); The imageData returns as raw BayerGR8 format: That is to say: G R G R G R G R ... B G B G B G ...
0
votes
1answer
70 views

Convert escaped string to bytearray or stream; c#

My input string consists of a mixture of unicode escape characters with regular characters mixed in. Example: ...
0
votes
2answers
57 views

How to convert a Collection to byte array

I have an ObservableCollection<Employee> how do I convert it into byte array[]? The class Employee consists of, - EmployeeId - DateOfJoining - Age - Salary The service I need to pass the ...
11
votes
4answers
372 views

Building a 9 patch drawable at runtime

I am successfully building a 9patch drawable at runtime on Android 3.0+ using the excellent gist provided by Brian Griffey (found here). Essentially I load the raw (no patches) graphic file from the ...
0
votes
1answer
38 views

long value to byte[] - Java [duplicate]

I have a decimal number and I would convert it in an array buffer of byte (little endian notation). I try this but I am not sure it is working: ByteBuffer a = ByteBuffer.allocate(4); a.putInt( ...
0
votes
3answers
49 views

Two byte arrays of identical value aren't equal

While writing a program, I recently came across an odd problem. Two byte arrays of eight values, with identical values in each, are reported as being inequal when using the == operator, and the values ...
0
votes
0answers
34 views

C# Converting byte array of jpeg file into byte array of pixels (reverse compression algorithm)

My idea is to open FileStream of a jpeg image and convert it to byte array of pixels without using C# Drawing classes. To make things clear, i need to know the reverse compression algorithm of jpeg ...
4
votes
1answer
41 views

Safe comparison vs unsafe, for byte[]

I've read in various places, about how much faster is a unsafe iteration between arrays using fixed blocks. I've tried in .net 4 and 4.5, achieving, more or less, the same results. The safe comparison ...
0
votes
3answers
63 views

Reading bytes from large files in Java cause Java heap space error

Awhile ago I was seeking help on the code below and finally started working on it again. Basically, I've narrowed my error down to the size of the file causing this error: Exception in thread "main" ...
1
vote
2answers
69 views

How to get an unsigned long from a byte array

I have an incoming byte array from a piece of test equipment. The byte array can either be two or four bytes long. I wrote the following code to convert these byte array's into unsigned longs: ...
0
votes
2answers
68 views

Byte Buffer To String

Reading a Byte buffer: while (...) { builder.Append(Encoding.ASCII.GetString(buffer, index, 1)); ++index; } I'm getting the following result: "20202020202020202020202057363253304b4358", ...
0
votes
0answers
15 views

Create ImageBuffer from Byte Array, rotate and store in Byte Array again

We use a database where we store images in bytes. I would like to offer our user base the opportunity to rotate the image in 90 degree intervals. Consider my snippet below. It processes without ...
0
votes
1answer
55 views

How do i hash the values inside a byte array using MD5?

i have a NSData value ,i find the bytes of that value by using following code Byte *byteData = (Byte*)malloc(24); //byte array int len=[result length]; //find the length memcpy(byteData, ...
-1
votes
0answers
38 views

Incrementing byte array in Java [closed]

In my Java project I need such a function which will increment the the byte array. Suppose byte array is represented as : byte[] byteArray= new byte[4]; byteArray[0] = 0x00; byteArray[1] = (byte) ...
-2
votes
0answers
103 views

Send byte array encoded file to server via Ajax POST with JavaScript [closed]

I figured out how to do this - there are a bunch of peeps asking around the net, and no single answer with all the pieces. Here's how I did it: To read the file: Drag and drop event file upload. ...
0
votes
0answers
37 views

Java - Does the following code return the pixel information? [closed]

I want to know what these lines of codes does line by line? I am trying to write a program where pixel values of an image is supposed to be altered(LSB technique). Does it return the byte array of ...
0
votes
1answer
36 views

Alllocate correct byte array size

I am trying to connect to a socket using this code public static Socket connectToSocket(String name) { try { while(true) { byte[] ...
0
votes
1answer
60 views

C# byte[] to long and back

I want to convert a given byte array to an int. Then I want to reverse the process. That is I want to get back the original byte array from that int. I thought something like this would have worked: ...
1
vote
1answer
258 views

java.io.FileNotFoundException: /file/path.jpg open failed: ENOENT (No such file or directory)

I am trying to save an image to parse.com. I need to convert it to byte array. The way I have decided to try to do this is to use apache commons-io. It is not quite working properly. This is my code ...
0
votes
0answers
20 views

Java - Save byte array as TSV file

I am trying to convert an XLS file to a TSV in Java. I am reading in the bytes of the "XLS" file and store them in a byte array. Now I need to save the byte array as a TSV file, but I am kind of lost ...
-4
votes
0answers
24 views

convert the content of a PDF file to byte array using java [duplicate]

below is my code which just converts the name of the PDF to byte array , not the content.can anyone help? if(obb.getFileName().contains(".pdf")){ InputStream is = new ...
-1
votes
1answer
163 views

PDF to Bytearray conversion in java

Below is my code to convert a PDF file to byte array public class ByteArrayExample{ public static void main(String[] args) { try{ BufferedReader bf = new BufferedReader(new ...
1
vote
0answers
66 views

Android - Convert audio (mp4) to array of byte

i have a problem with my code, i want to convert mp4 audio files to array of bytes. example, i have 2 audio files with different songs but the length are same, but when i print the array of bytes the ...
0
votes
1answer
65 views

ByteArray pass across JS and AS3

i have sound data as ByteArray in AS3. need that to be transferred to javascript, which is later send back to AS3 for play back. i tried converting it to string by readUTFBytes and writeUTFBytes. but ...
0
votes
1answer
85 views

Having some problems saving/displaying an image in MVC 4

I have searched around for a while now with no joy. I am trying to save an image to my SQL db as a byte array, then I am trying to display it later. The display part is not working. I don't know if ...
0
votes
0answers
32 views

I got my “POST request to php” code working, I didnt encode the data to “byte” format, I just cant understand why that works

I was Posting to a practice code and having no success, I looked on tutorials and found that I had been writing data to string->writer->outputstream, and that sending a byte array in a data output ...
0
votes
2answers
49 views

Convert hashed byte array into String

If I do something like int keyLength = 160; // because SHA1 generates 160-bit hashes int iterations = 20 * 1000; //standard is 2000 but let's be more secure here KeySpec spec = new ...
5
votes
2answers
52 views

Java byte[] to/from String conversion

Why does this junit test fail? import org.junit.Assert; import org.junit.Test; import java.io.UnsupportedEncodingException; public class TestBytes { @Test public void testBytes() throws ...
0
votes
1answer
39 views

passing a bytearray as a parameter of a method (CoreMIDI implementation)

I'm trying to create a method that outputs MIDI information to a virtual client using CoreMIDI. The "action" method is MIDIReceived, which sends midi data in the form of MIDI packets to a virtual ...

1 2 3 4 5 37