• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Tim Cooke
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
Saloon Keepers:
  • Piet Souris
Bartenders:

Native code?

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is native code? I heard that Java creates a native code in Run time.How do I identify it?
And also, what is the use of JNI?
Thanks
Lara
 
Ranch Hand
Posts: 67
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JNI is the java native interface, it is the libraries and methods that java uses to interface / run with native code.
Native code is code written in other languages (such as C, C++, delphi, etc) - which are usually deemed to be native to one platform.
It can be difficult to get the hang of but is what allows the use of dlls etc on windows, or C libraries on Unix
 
reply
    Bookmark Topic Watch Topic
  • New Topic