4
votes
7answers
689 views
Persistent data structures in Java
Does anyone know a library or some at least some research on creating and using persistent data structures in Java? I don't refer to persistence as long term storage but persistence in terms of imm …
-1
votes
Is GCJ (GNU Compiler for Java) a viable tool for publishing a webapp?
I don't think that a large application like yours will compile to machine code. Remember that java is not only java syntax (might compile to machine code) but also a virtual machine which is more l …
0
votes
How to rewrite or convert C# code in Java code ?
I only know the other way. Dbo4 is developed in java and the c# version is generated from the java sources automaticaly.
…
0
votes
How do I get rid of “Cannot resolve property key” in fmt:message tags in JSPs in Intellij
IMHO you can disable every hint or error marker in IDEA. Please tell us the version of IDEA that you use.
…
4
votes
How to synchronize requests for data with data update process?
You can use a ReadWriteLock instead of synchronize.
A Read …
0
votes
RCP + JNLP\WebStart App will not start
Use the java control panel (on a windows system in system controls) to enable the Java console. This setting can be found on the tab for extended settings. Set the value to show the console. After …
1
vote
OS recommendation to run Java Swing App on very basic hardware
Have a look at the various JEOS flavors ("Just enough operating system").
…
2
votes
Recommendations of a high volume log event viewer in a Java enviroment
You might implement a adapter for logback to send log4j events to a log4j receiver. This would enable you to use chainsaw. Or build an adapter which receives logback network events and exposes them …
1
vote
Create a temporary directory in Java
Using File#createTempFile and delete to create a unique name for the directory seems ok. You should add a ShutdownHook to delete the directory (recursively) o …
3
votes
virtual listbox in Swing
The problem is that even using intelligent pre-fetch you cannot guarantee that all visible rows were prefetched when they are needed.
I'll sketch a solution which I used once in a project …
2
votes
How do I read the manifest file for a webapp running in apache tomcat?
Generally this will not work as david a. said. You can work around it like described here http://forums.sun.com/thread.jsp …
0
votes
javax.net.ssl.SSLHandshakeException: certificate expired - Local or Remote?
See here http://www.cs.sunysb.edu/documentation/jsse/jssefaq.html#17
E.g. set the SystemProperty jav …
0
votes
getting drafts and sent items in Java using pop3
POP3 does not supports the notion of differents folder. If the mail server supports IMAP then you'd be able to access all folders. The IMAP support in JavaMail is decent and easy to use.
…
0
votes
Java Nimbus LAF with transparent text fields
I think the question is how to interpret "opaque" and "background".
For a JTextfield there is the question: "what visible parts are the background?". I'd define "background" as the parts of the bo …
0
votes
Is there a difference between BigDecimal(”0”) and BigDecimal.ZERO?
Before talking about runtime penalties make sure that this piece of code matters. Setup profiling and measure the complete use case.
Nevertheless prefer Bigdecimal.ZERO as it's …
