J# compatibility with Sun Java

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kiran

    J# compatibility with Sun Java

    hi

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

    regards
    kiran.
  • phoenix

    #2
    Re: J# compatibility with Sun Java


    "Kiran" <anonymous@disc ussions.microso ft.com> schreef in bericht
    news:C33B3055-62C8-4C2F-A5AB-CD7F6ADEF278@mi crosoft.com...[color=blue]
    > hi
    >
    > can any one let me know which versions of JDK is supported by Visual J#?
    >
    > regards,
    > kiran.[/color]

    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


    Comment

    • Wayne Citrin

      #3
      Re: J# compatibility with Sun Java

      "Kiran" <anonymous@disc ussions.microso ft.com> wrote in message
      news:C33B3055-62C8-4C2F-A5AB-CD7F6ADEF278@mi crosoft.com...[color=blue]
      > can any one let me know which versions of JDK is supported by Visual J#?[/color]

      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
      citrin@jnbridge .com
      JNBridge connects Java and .NET applications so enterprise teams can reuse existing code, call Java from C# or .NET from Java, and modernize without rewrites.

      Spanning the Worlds of Java and .NET
      _______________ _______________ ______


      Comment

      • Wayne Citrin

        #4
        Re: J# compatibility with Sun Java

        Oops -- I meant "JDK 1.1.4" below, not "JDK 1.4"!

        "Wayne Citrin" <citrin@jnbridg e.com> wrote in message
        news:101l7b48pe tm184@corp.supe rnews.com...[color=blue]
        > "Kiran" <anonymous@disc ussions.microso ft.com> wrote in message
        > news:C33B3055-62C8-4C2F-A5AB-CD7F6ADEF278@mi crosoft.com...[color=green]
        > > can any one let me know which versions of JDK is supported by Visual J#?[/color]
        >
        > Essentially, you get the equivalent of JDK 1.1.4, plus collections from[/color]
        JDK[color=blue]
        > 1.2. J# does not include some things that are in JDK 1.4, including JNI,
        > applets, and RMI.[/color]


        Comment

        • Bruno Jouhier [MVP]

          #5
          Re: J# compatibility with Sun Java

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

          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.


          Comment

          Working...