Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I've been using org.json for all my parsing needs in the past but now I'm deploying to a websphere application server v 7.0.0.22 which runs java 6 and I'm seeing unsupported exceptions indicating the org.json library is not supported there. Are there any other good json parsing library's that can be used with java version 6?
Jackson is good, but you can also use Google Gson :
https://github.com/google/gson
In my current job, we use Jackson from codehouse. We don't have any concerns with it, works very well on our environment. We use jboss instead of websphere though
http://jackson.codehaus.org/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 months ago.
Improve this question
I am in search of a library to implement jsonrpc 2.0 in java with bidirecional support. I have found these two (JJsonRpc, jsonrpc4j) some recommendation of which one is better?
In the end I decided to write my own integration to the api json rpc using
OKHttp for HTTP connections and Jackson Core for fast JSON serialisation / deserialisation
Implementation Code:
https://github.com/AraguaneyBits/bitcoinrpc4java/blob/master/src/main/java/com/araguaneybits/crypto/bitcoinrpc/methods/BtcRpcGateway.java
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'd like to run a SPARQL query using the MarkLogic Java API documented at http://docs.marklogic.com/guide/java . I've seen examples for running such queries from the console, via the REST API, or via XQuery. But I don't see how to do this using the Java API - is this possible to do?
Choose a toolkit (e.g. http://jena.apache.org/).
Being a W3C standard, any client library should be able to work with any server. The level of compliance to the standards is rally quite high.
Documentation:
http://jena.apache.org/documentation/query/app_api.html
(Disclosure: I contribute to Apache Jena).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Does anyone knows where i can find a reliable source (docs, JIRA issues, stackoverflow threads, etc) about using Hibernate and Java 8?
I have a bunch of applications using Hibernate, written in Java 7, and i'm interested in migrate its code to Java 8.
For example, is there any known issues on mapping entities with #Temporal attributes on Java 8 (using legacy java.util.Date or JSR-310's new classes)?
Thanks.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm working on a Java project in which I should migrate a module based on ETBAC to EBICS. I've been searching for few days but I can't find any any example for such project.
The only available information is the official EBICS documentation.
Here, you can find a free EBICS client (french version) written in Java:
http://sourceforge.net/projects/ebics/
I came across your question a few times when researching for available ebics clients.
We have developed an Open Source ruby implementation of EBICS: https://github.com/railslove/epics
It is a pure ruby implementation and runs also on jruby to be deployed in a java environment
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there a Java RTP/RTCP library based on Java NIO or some Java NIO framework (Netty, MINA, ...)?
In Red5, we are adapting an RTP/RTSP library written using Mina. If you would like to check it out, go here: http://red5.googlecode.com/svn/java/plugins/trunk/rtspplugin/
The original library was written by Matteo Merli (matteo.merli#gmail.com) and yes, we have his permission to modify it.
You would have to write a wrapper yourself, I'm afraid. Netty has a pretty flexible architecture that would allow that.