Welcome![Sign In][Sign Up]
Location:
Search - java native

Search list

[BooksAddison_Wesley-Java_Native_Interface

Description: 非常好的JAVA书籍-very good books JAVA
Platform: | Size: 2401280 | Author: 吴学坤 | Hits:

[JSP/JavaNative

Description: java国际化编程,多语言显示-international programming, multiple languages show
Platform: | Size: 6144 | Author: 鱼儿游 | Hits:

[OtherNativeDemo

Description: JAVA调用本地方法,NATIVE接口,可以调用C/C++函数,或被C/C++调用-JAVA, NATIVE interface, can call C/C functions or C/C call
Platform: | Size: 5120 | Author: 马艇 | Hits:

[OS programjna

Description: JNA(Java Native Access )提供一组Java工具类用于在运行期动态访问系统本地库(native library:如Window的dll)而不需要编写任何Native/JNI代码。开发人员只要在一个java接口中描述目标native library的函数与结构,JNA将自动实现Java接口到native function的映射。-JNA (Java Native Access) provides a set of Java tools for the dynamic run-time access to the system of local libraries (native library: such as the Window of the dll) without the need for the preparation of any Native/JNI code. As long as developers in a java interface as described in the target native library function and structure, JNA will automatically realize Java interface to native function mapping.
Platform: | Size: 272384 | Author: tiger | Hits:

[JSPAddisonWesleyJavaNativeInterface

Description: THIS book covers the Java™ Native Interface (JNI). It will be useful to you if you are interested in any of the following: • integrating a Java application with legacy code written in languages such as C or C++ • incorporating a Java virtual machine implementation into an existing application written in languages such as C or C++ • implementing a Java virtual machine • understanding the technical issues in language interoperability, in particular how to handle features such as garbage collection and multithreading-THIS book covers the Java
Platform: | Size: 1619968 | Author: | Hits:

[JSP/Javajmf-native

Description: java jmf sound library native files
Platform: | Size: 589824 | Author: kaan | Hits:

[JSP/JavaTrayIcon

Description: Java程序最小到系统托盘源代码 Java程序最小到系统托盘只用java是达不到的,你可以用Java Native Interface结合C或者C++的有关方法来实现!利用C++生成.dll文件来供java调用! %-!!m D?   我也收集了一些源代码,这里拿出来供参考一下! .K8a-}qL 这是我搜集整理的,希望对寻找这方面信息的人有帮助![/-The smallest Java program source code to the system tray smallest Java program to system tray only java is unable to reach, you can use Java Native Interface combined with C or C++ Of the method to achieve! Use of C generation. Dll files for java call! -!! M D? I also collected some source code out here for reference! . K 8a-) qL This is my collection of finishing the hope of finding this information has helped people! [/
Platform: | Size: 46080 | Author: 林祥华 | Hits:

[Software Engineeringjni

Description: Java native interface Documentation
Platform: | Size: 1619968 | Author: mansoor | Hits:

[JSP/Javacaveatemptor-native-061211

Description: 网上拍卖系统,此系统是基于Java环境编译,功能良好!-Online auction system, this system is based on the Java compiler environment, a well-functioning!
Platform: | Size: 8767488 | Author: | Hits:

[JSP/JavajavaAndCpp

Description: java and c++ java native interface-java and c++
Platform: | Size: 9216 | Author: lucifer | Hits:

[Otherjni

Description: Introduction JNI(Java Native Interface)
Platform: | Size: 782336 | Author: Hector | Hits:

[JSPCore.Java.Vol.II.Advanced.Features.8Ed

Description: Java 编程经典书籍,java核心技术最新第8版第2卷 Core Java Volume 2 Advanced Features 8th Edition-Volume II includes new sections on the StAX API, JDBC 4, compiler API, scripting framework, splash screen and tray APIs, and many other Java SE 6 enhancements. In this book, the authors focus on the more advanced features of the Java language, including complete coverage of * Streams and Files * Networking * Database programming * XML * JNDI and LDAP * Internationalization * Advanced GUI components * Java 2D and advanced AWT * JavaBeans * Security * RMI and Web services * Collections * Annotations * Native methods
Platform: | Size: 20902912 | Author: Tong Liu | Hits:

[JSP/JavaAndriod_JNI

Description: 在Android平台中用C/C++语言编写Native底层库,以及对应的JNI接口的详细例子-Implement the JNI interface for Google Android system. Introduce the method of building Java Native code.
Platform: | Size: 15360 | Author: Richardson | Hits:

[androidjni

Description: the Java Native Interface(JNI) Android Programmer s guide
Platform: | Size: 2415616 | Author: KimJuHyok | Hits:

[JSP/Java222

Description: JNI是Java Native Interface的缩写,中文为JAVA本地调用。从Java 1.1开始,Java Native Interface (JNI)标准成为java平台的一部分,它允许Java代码和其他语言写的代码进行交互。 OpenCV是Intel公司支持的开源计算机视觉库。它轻量级而且高效——由一系列 C 函数和少量 C++ 类构成,实现了图像处理和计算机视觉方面的很多通用算法。 -myJNIOpenCV = new JNIOpenCV() String filename = "lena.jpg" //OpenCV的官方测试图片(人脸识别) String cascade = "haarcascade_frontalface_alt.xml" int[] detectedFaces = myJNIOpenCV.detectFace(40, 40, cascade, filename) int numFaces = detectedFaces.length/4
Platform: | Size: 38912 | Author: yinxin | Hits:

[JSP/JavaJAVA-NATIVE-INTERFACE-CALLING-CPP-LIBRARY

Description: 1.WRITE JAVA CODE 2.COMPILE THE JAVA CODE 3.CREATE C/C++ HEADER 4.WRITE THE C/C++ CODE 5.RUN THE JAVA CODE (IF USING VISUAL STUDIO 2010 DONT HAVE TO CREATE SHARED LIB FILE, IT WILL DO IT FOR U)
Platform: | Size: 1233920 | Author: dingo100 | Hits:

[JSP/JavaJava_Native_Interface

Description: 用java调用dll本是一个不难的事情,但往往会给初学者带来的一点麻烦,网络上很多调用dll的例子都参差不齐,往往省略了一些步骤,对他们来说觉得简单不需要说明,对初学者来说确很重要,结果不想可知。因此在这里仔细的说明一下,希望给初学者们带来些许方便,高手绕过。-class HelloWorld { public native void displayHelloWorld() static { System.loadLibrary("hello") } public static void main(String[] args) { new HelloWorld().displayHelloWorld() } }
Platform: | Size: 6144 | Author: 田朝 | Hits:

[OthercPP--java

Description: 实现c++与java的交互,,使用的技术是称为JNI( Java Native Interface ),C++编写的程序,只要实现JNI生成的接口,则可以让Java程序调用,而Java编写的程序,C++调用,则需要运行Java虚拟机,通过JNI查询调用Java实现的方法。
Platform: | Size: 424960 | Author: rjm00 | Hits:

[Software EngineeringJava-call-C.CPP

Description: Java利用java native interface 和C、C++相互调用-Java and C++ calling each other via java native interface
Platform: | Size: 1660928 | Author: qian | Hits:

[JSPThe-Java-Native-Interface

Description: The Java Native Interface - Programmer s Guide and Specification-The Java Native Interface- Programmer s Guide and Specification
Platform: | Size: 1619968 | Author: 华迪嘉 | Hits:
« 12 3 4 5 6 7 8 9 10 »

CodeBus www.codebus.net