An open API service indexing awesome lists of open source software.

https://github.com/devnied/bit-lib4j

Useful library to handle bytes or bits in Java. Read and write data in a byte array with a custom size for Java types. Read/Write Integer, Long, signed data, String, Hexa String and Date bit to bit
https://github.com/devnied/bit-lib4j

bit-lib4j bits bitset byte-array java java-library

Last synced: 10 months ago
JSON representation

Useful library to handle bytes or bits in Java. Read and write data in a byte array with a custom size for Java types. Read/Write Integer, Long, signed data, String, Hexa String and Date bit to bit

Awesome Lists containing this project

README

          

Bit-lib4j ![Bit-lib4j CI](https://github.com/devnied/Bit-lib4j/workflows/Bit-lib4j%20CI/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/devnied/Bit-lib4j/badge.svg?branch=master)](https://coveralls.io/github/devnied/Bit-lib4j?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.devnied/bit-lib4j/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/com.github.devnied/bit-lib4j)
========

Bit-Lib4j is an useful library to handle bytes or bits in Java.

With this library you can read/write data in a byte array with a custom size for Java primitive types.

## Simple API

It is very easy to get started with bit-lib4j:

* Read data from byte array

```java
byte[] array = new byte[]{0x12,0x25}
BitUtils bit = new BitUtils(array);
int res = bit.getNextInteger(4); // read the first 4 bits to an integer
```

* Create byte array with bit

```java
BitUtils bit = new BitUtils(8);
bit.setNextInteger(3,3); // set an integer on 3 bits
bit.setNextInteger(1,5); // set one value on 5 bits

// Result
bit.getData(); // return Ox61 (0110 0001b)
```

* Read/write signed values

```java
BitUtils bit = new BitUtils(4);
bit.setNextInteger(-2 , 4); // set an integer (-2) on 4 bits

// Result
bit.getNextIntegerSigned(4); // return -2
```
You can also use ```getNextSignedLong()``` to handle long signed values.

## Handle bytes more easily

The class ByteUtils provided static methods to convert byte array to String, String to byte array, int to byte array, byte array to binary representation.

More documentation into the [wiki](https://github.com/devnied/Bit-lib4j/wiki)

## Download

### Maven

```xml

com.github.devnied
bit-lib4j
1.5.2

```

### JAR

You can download this library on [Maven central](http://search.maven.org/#search%7Cga%7C1%7Cbit-lib4j) or in Github [release tab](https://github.com/devnied/Bit-lib4j/releases)

## Dependencies

If you are not using Maven or some other dependency management tool that can understand Maven repositories, the list below is what you need to run bit-lib4j.

**Runtime Dependencies**
* slf4j-api 1.7.30

## Bugs

Please report bugs and feature requests to the GitHub issue tracker.

Forks and Pull Requests are also welcome.

## Author

**Millau Julien**

+ [http://twitter.com/devnied](http://twitter.com/devnied)
+ [http://github.com/devnied](http://github.com/devnied)

## Copyright and license

Copyright 2020 Millau Julien.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this work except in compliance with the License.
You may obtain a copy of the License in the LICENSE file, or at:

[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

[![Analytics](https://ga-beacon.appspot.com/UA-19411627-5/Bit-lib4j/index)](https://github.com/igrigorik/ga-beacon)