J# compatibility with Sun Java

  • Thread starter Thread starter Guest
  • Start date Start date
Kiran said:
hi

can any one let me know which versions of JDK is supported by Visual J#?

regards,
kiran.

None, J# is a way in which you can write java code for the dotnet framework.
So you use the framework classes/functions/... and not those of the JDK.

Yves
 
Kiran said:
can any one let me know which versions of JDK is supported by Visual J#?

Essentially, you get the equivalent of JDK 1.1.4, plus collections from JDK
1.2. J# does not include some things that are in JDK 1.4, including JNI,
applets, and RMI.

Wayne
____________________________________

Wayne Citrin
JNBridge, LLC
(e-mail address removed)
www.jnbridge.com
Spanning the Worlds of Java and .NET
____________________________________
 
None, J# is a way in which you can write java code for the dotnet
framework.
So you use the framework classes/functions/... and not those of the JDK.

Wrong!
J# comes with a full JDK 1.1.4 + some stuff from JDK 1.2 (collections). The
JDK is packaged as a .NET dll (vjslib.dll).
So, you have the choice when you program with J#. You can use the JDK APIs
if you want compat with Java (unfortunately this is not the latest), or you
can use the .NET framework APIs.

Bruno.
 
Back
Top