Tagged Questions
1
vote
2answers
51 views
Convert byte[] to Vector
I stored a Vector<'String> into a BLOB field in a sqlite DB.
The problem is when I want to get that Vector, it has to be with cur.getBlob (method from a Cursor cur) and it returns a byte[], the ...
0
votes
1answer
29 views
Converting a byte array (byte[]) to String changes one special character
In Java, I try to convert a byte array (byte[]) xml into a string using:
String output = new String(myXMLbyteArray, "UTF-8");
This is successful except for one special character, the acute ...
5
votes
2answers
79 views
Writing byte array to file. Not always getting expected result
I am using Java to write a byte array to a file. When I open my file in a hex editor I am not always seeing the bytes that I expected to be there. Here is my example code and contents of the output ...
5
votes
5answers
70 views
Java - why does char get implicitly cast to byte (and short) primitive, when it shouldn't?
Certain functionality of the compiler puzzles me (Oracle JDK 1.7 using Eclipse).
So I've got this book that says char primitive needs to be explicitly cast to short and byte and this all makes sense ...
0
votes
1answer
39 views
JAI save byte[] to .tiff file
I'm trying to save a byte[] of raw image data to a .tiff file on my harddrive with the help of the Java Advanced Imaging API.
There are some minor examples on the web but they didn't help me really ...
0
votes
3answers
62 views
Convert ImageByteArray to BufferedImage
I've checked several examples on how to convert byte[] to BufferedImage, but I can't seem to get it working. I convert an image to byte array with:
BufferedImage b = null, c=null;
try ...
3
votes
1answer
57 views
Java - Convert Human Readable Size to Bytes
I've found lots of information about converting raw byte information into a human-readable format, but I need to do the opposite, i.e. convert the String "1.6 GB" into the long value 1717990000. Is ...
4
votes
1answer
42 views
Why Byte.parseByte(“10000001”,2) throws a NFE?
I have a bitmask to be stored in one byte, as I only need 8 bits. When I'm creating it I do it as a String (I thought it would be easier in this way) and then I transform it to a byte with ...
1
vote
2answers
63 views
Hex to Byte Array in C# and Java Gives Different Results
First of all, sorry for the long post, I want to include all my thoughts so it's easier for you guys to find what's wrong about my code.
I want to transfer an Hex string from a C# application to a ...
1
vote
1answer
44 views
Determine number of Bytes in ByteBuffer
I have a ByteBuffer that can hold a maximum of (4 + size) bytes (that is, an integer followed by size characters). However, the number of characters written to the ByteBuffer , may be smaller than ...
0
votes
1answer
37 views
Java I want to search for a binary hex value in my byte array
public static void main(String[] args) {
File inFile = null;
if (0 < args.length) {
inFile = new File(args[0]);
}
BufferedInputStream bStream = null;
try {
int read;
...
2
votes
1answer
37 views
Java ME: byte array packing
I have declared array "public byte[] arr={1, 2, 3, 4};". Looking to the compiled binary I see that each element anyway gets 5 or 6 bytes allocated (32-bit install). I want to downsize already existing ...
-1
votes
0answers
60 views
C# to Java - Is this implementation correct? [closed]
I've got a C# code and would like to convert it to Java.
C# Code is the following:
List<short> collectedshortList = new List<short>();
// fill collectedshortList with a few short values ...
0
votes
1answer
37 views
Bit Shifting a Byte
I have the following code:
byte my_byte;
my_byte |= (1 << 7);
my_byte |= (1 << 6);
I am trying to set the 8th and 7th bit in my_byte to 1. Using the debugger I found that after ...
0
votes
4answers
43 views
Using char as an unsigned 16 bit value in Java?
I need an unsigned 8 bit integer in Java, and char seems to be the only thing close to that. Although it's double the size, it's unsigned which makes it practical for what I want to use it for ...
0
votes
0answers
34 views
How to adjoin least significant bits to form a character in Java?
I have a color array (read from a bmp file in case you wondered) that I take the least significant bits of each RGB value and create a pixels array.
Then I take that array and create a character out ...
1
vote
0answers
23 views
Java binary literals - Value -128 for byte
Since SE 7 Java allows to specify values as binary literal. The documentation tells me 'byte' is a type that can hold 8 Bit of information, the values -128 to 127.
Now i dont know why but i cannot ...
-2
votes
3answers
71 views
Arraylist in a Arraylist
How is it possible to store data (bytes) input like this:
input data (bytes) : 01 23 45 and 67 89 10
At the end Arraylist row : [[01,23,45],[67,89,10]]
// declaration
List<List<Byte>> ...
1
vote
2answers
66 views
Why i am getting ype mismatch: cannot convert from int to byte
class Test
{
public static void main(String[] args)
{
byte t1 = 111;
byte t2 =11;
byte t3 = t1+t2;
System.out.println(t1+t2);
}
}
In eclipse it is showing ...
0
votes
2answers
96 views
How the byte range is -128 to 127 in java.How it is possible? [duplicate]
1 byte = 8bits
I converted 1111 1111 binary number to decimal .it is giving me 255.
But when i converted 0111 1111 binaru number to decimal .it is giving me 127.
So on what basis the range is ...
0
votes
3answers
40 views
How the byte data type can be useful for saving memory in large arrays
The byte data type is an 8-bit signed two's complement integer. It has
a minimum value of -128 and a maximum value of 127 (inclusive). The
byte data type can be useful for saving memory in ...
3
votes
4answers
103 views
Java int to unsigned byte
Long story short, I'm reading some integer values from one file, then I need to store them in a byte array, for later writing to another file.
For example:
int number = 204;
Byte test = new ...
0
votes
1answer
25 views
Why can Java auto-convert a byte to most other primitives in return of a function?
Perhaps this is something I overlooked back when I learned the basics of Java, but why is the following code legal?
float foo(byte b) {
return b;
}
It is allowed with every primitive type, with ...
0
votes
0answers
46 views
My ByteArray to String Code doesn't work with Android
For normal Java developing, I use this code to convert a Byte Array to a String
StringBuffer sb = new StringBuffer();
for (int x = 0; x < uid.length; x++){
if (x > 0) {
...
0
votes
2answers
35 views
is this correct ? how to load bytes from a file? [duplicate]
I need to load bytes from a file using Java. is this right ?
InputStream ips=new FileInputStream(file);
InputStreamReader ipsr=new InputStreamReader(ips);
BufferedReader br=new BufferedReader(ipsr); ...
0
votes
1answer
52 views
Breaking a byte into parts
I have a byte 00111101. I want to break it into two parts like 0011 1101 and create two new bytes 00000011 and 00001101. How can I do it in Java?
My code is:
byte b; //b has a particular value
byte ...
0
votes
1answer
35 views
Scaling An Array (Matrix)
The intention of this program is to create a larger array of bytes scaled up by a factor of 10 from the original array. For example, the 1 in [0][0] should be a 10x10 square of 1's in the new array. ...
-1
votes
1answer
70 views
Converting a Map<String, Object> to a byte[] and back
Alright, so I have two methods that should work as far as I can tell which gets something called an ItemStack, and serializes it. The serialization is then entered into a ByteOutputStream and is ...
0
votes
1answer
40 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
2answers
66 views
Java byte to int
I know there are N threads for this question but some people are using different and different methods to convert a byte to int. Is this correct what am I writing? Hex to int or hex to decimal? Which ...
0
votes
1answer
31 views
Confused about: RandomAccessFile.readFully(byte[] b)
lets say byte[] b = 1024
for(int k = 0; k < 10; k++)
data.readFully(b);
does the readFully() method increment by itself if it is put inside of a loop kind of like the nextLine() method? or ...
0
votes
0answers
40 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 ...
-2
votes
1answer
43 views
Java IO For loop vs in.read() [closed]
I'm reading for a byte array from my server, and whenever I use
for(int x = 0; x < localArray.length; x++) {
localArray[x] = dataInput.readByte();
}
It works fine, but whenever I do ...
0
votes
1answer
59 views
Saving a .jpg to byte[] android
This shouldn't be that hard, but I cannot figure this out. I need to save an image, on my end only, and build it dynamically so all my users will view these images. The tutorials on Parse.com are very ...
1
vote
2answers
76 views
Why does bitwise AND with byte in JAVA do this?
I'm messing around with bitwise operators, and I was trying to convert a negative byte to an unsigned 8 bit value, and this is what people suggested:
System.out.println(-20 & 0xFF); //bitwise ...
0
votes
1answer
45 views
What does this binary documentation mean?
I'm trying to decode somebody's byte array and I'm stuck at this part:
< state > ::= "01" <i>(2 bits) for A</i>
"10" <i>(2 bits) for B</i>
...
-1
votes
2answers
80 views
java byte[] and String conversion
I have some trouble in encrypting and decrypting some AES messages because of byte[]-String conversions...I find quite interesting how a[9]!=c[9] (saw the difference when debugging)
try {
...
0
votes
0answers
59 views
How to output codeword : LZW compression
I am trying to write an LZW compression Encoder for an assignment. I have implemented the following code which I think is correct but I am unsure what to write for the output file.
public static void ...
5
votes
2answers
60 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 ...
2
votes
6answers
82 views
Purpose of byte type in Java
I read this line in the Java tutorial:
byte: The byte data type is an 8-bit signed two's complement integer. It has
a minimum value of -128 and a maximum value of 127 (inclusive). The
byte ...
0
votes
1answer
43 views
Which is the best charset to pass data to php?
In my Java App, I want to pass individual bytes of information to a php script via POST. In order to do that, I convert the byte[] into a String.
Now, which charset is best for this operation? I want ...
0
votes
4answers
123 views
Java ByteArray equivalent in C or C++
What are the equivalent for java byte in C,C++
byte[] itemsArray;
itemsArray = new byte[items *no];
itemsArray[x] = (byte) xyz;
unsigned char * itemsArray;
itemsArray = (unsigned char*) malloc ...
-2
votes
2answers
76 views
reading java class files using java program
I am writing a java code to help me read and print all byte code in a .class file.
I have tried surfing the internet, but the answers dont really answer my question.
below is the code I currently ...
2
votes
4answers
119 views
Please explain me why 24,16, 8 were used in converting int to bytes?
The following code is to convert an int to Bytes array.
I know the int i is right shifted 24, 16, 8 times and ANDED with 0xFF but what I can't understand is why these numbers were used?
private ...
0
votes
1answer
88 views
WCF WebService on Android project - How to get byte[] type via SoapObjects?
I have Android / Java project with Network threads. It is connected to WCF WebService which provides me method GetAddonsTypes.
GetAddonsTypes return long, int, and string items so I use own Parser ...
0
votes
5answers
86 views
read gzip file to byte[] all at once
in code
GZIPInputStream gzis= new GZIPInputStream(bais);
byte[] bBodyUnzipped= new byte[10240];
gzis.read(bBodyUnzipped);
, how can I optimize the disk space usage and not create a big byte[] by ...
3
votes
1answer
164 views
Using ImageIO.write() to create a JPEG creates a 0 byte file
I am trying to write a method that takes an image, and saves a 100 by 100 thumbnail of that image. However, when I save the file, it comes out as an unreadable 0 byte image (with the error "Error ...
0
votes
3answers
71 views
How to append a byte to a string in Java?
I have this operation I need to perform where I need to append a byte such as 0x10 to some String in Java. I was wondering how I could go about doing this?
For example:
String someString = "HELLO ...
0
votes
1answer
90 views
Best efficient way to write a big string of bytes to file
I am writing a string of bits to a file like this :
//String to ByteArray
byte[] b = new BigInteger(encodedFile.toString(), 2).toByteArray();
//Writing
FileOutputStream fos = new ...
-5
votes
1answer
62 views
save contents in txt file in byte format [closed]
I want to save contents in a file in byte format however it gets converted to string everytime. I want my program to read and write bytes to a file and not its string value.please help. Is it ...






