Tagged Questions

Javolution is a hard-real-time collections library.

learn more… | top users | synonyms

3
votes
1answer
77 views

Queue implementation in javolution

Can anybody let me know is there any Queue implementation in javolution to use? I have seen FastList, FastMap, FastTable, but I couldn't find one specific to Queue. Any other suggestion to have a fast ...
2
votes
3answers
133 views

XML API for best performance

I have an application that works with a lot of XML data. So, I want to ask you which is the best API to handle XML in java. Today, I'm using W3 and, for performance, I want to migrate to some API. I ...
1
vote
3answers
182 views

Javolution ByteBuffer question

I have the following implementation with Javolution: public class RunScan extends Struct { public final Signed32 numOfClusters = new Signed32(); public final ClusterData[] clusters; ...
1
vote
1answer
67 views

javolution support unsigned64 or not?

Anybody knows if Javolution support unsigned64 or not? I cannot find similar type defined in its API. My co-worker start use Javolution hoping it will help us to mapping Java types with C++ types in ...
0
votes
1answer
56 views

Javolution - reading variable-length string

How to read variable length String from a C struct using Javolution API? For example the code below is used to get a fixed size String- public final UTF8String data= new UTF8String(100); Can anyone ...
0
votes
1answer
62 views

Java: Javolution: How to use UTF8StreamReader properly? Error occurs Caused by: java.lang.ArrayIndexOutOfBoundsException: 2048

Here's the code: public static void mergeAllFilesJavolution()throws FileNotFoundException, IOException { String fileDir = "C:\\TestData\\w12"; File dirSrc = new File(fileDir); File[] list ...
0
votes
1answer
94 views

Java: Javolution: How to use UTF8ByteBufferWriter and MappedByteBuffer?

To Anybody that uses the javolution, please guide me on how to use it. Any snippet code helps me a lot. here's my current code: public static void mergeAllFilesJavolution2()throws ...
0
votes
0answers
42 views

Javolution finding jar for j2me

Could anyone help me to find Jar(source) file for Javolution J2ME. Thanks
0
votes
1answer
135 views

Can a servlet truly access jars in Tomcat's lib dir?

Background first: Tomcat 6.0 on WindowsXP & OpenSUSE SLED 11.0 (same results on both platforms) Oracle JDK v6 Spring 3.0 Javolution 5.5.1 I've got a strange problem with a jar ...
0
votes
1answer
177 views

Struct Javolution Lib Byteorder and Byte alignment

How to set the byte or word alignment using javolution lib. This is like #pragma in CPP. I am little bit confuse about the byte order. Please suggest me for the byte Order set in the same library.