1
vote
Deserialize in a different language.
Theoretically, it's possible. The Java Serialization, like pretty much everything in Javaland, is standardized. So, you could implement a deserializer according to that standard i …
8
votes
What are the differences between Generics in C# and Java… and Templates in C++?
There are already a lot of good answers on what the differences are, so let me give a slightly different perspective and add the why.
As was already explained, the main di …
2
votes
How do I add a MIME type to .htaccess?
AddType application/x-java-jnlp-file .jnlp
Note that you might not actually be allowed to do that.
See also the …
0
votes
Creating non-reverse-engineerable java programs
This is impossible. The CPU will have to execute your program, i.e. your program must be in a format that a CPU can understand. CPUs are much dumber than humans. Ergo, if a CPU can understand your …
8
votes
What is Java written in?
Sun actually has multiple JVMs. The HotSpot JVM is written largely in C++, because HotSpot is heavily based on the …
11
votes
What’s the best new development tool of 2009?
I would say, the biggest thing in 2009 so far, and probably for the whole year, has been the r …
0
votes
How to use regular expressions to parse HTML in Java?
Regular expressions can only parse regular languages, that's why they are called regular expressions. HTML is not a regular language, ergo it cannot be parsed by regular expressions.
…
1
vote
Is there a successor to Ant and Maven?
I read somewhere (can't remember where, and Google can't either – which is a little suspicious and could mean that I just made that up …) that James Duncan Davidson himself replaced Ant with …
3
votes
Which libraries have been ported to different programming languages?
SUnit, Smalltalk
every other unit testing framework, pretty much every programming language
…
5
votes
Which libraries have been ported to different programming languages?
JUnit, Java
test/unit, Ruby
NUnit, .NET
PHPUnit, PHP
…
2
votes
Which libraries have been ported to different programming languages?
Hibernate, Java
NHibernate, .NET
…
0
votes
0
votes
Java Generics?
Generics are just Java's Implementation of Parametric Polymorphism. They work just like Parametric Polymorphism in any other language.
…
30
votes
What’s the difference between Duby and Juby and why would I need either of them?
I'm going to answer the questions out of order, starting with the simplest one:
2. Could someone elaborate a little bit more on what this distinction is about?
…
2
votes
Do Oracle intend to continue work on Java?
I believe this has been discussed on some blogs, and the people involved said that according to US mergers & acquisitions law, it is simply illegal for anyone at Oracle or Sun to talk about stu …
