📄 javaloanapp.java
字号:
package examples.jni;
public class JavaLoanApp
{
public JavaLoanApp(String libPath) {
System.load(libPath);
}
/* Use this function to unit test whether the library is being loaded properly */
/*
public static void main(String args[])
{
JavaLoanApp jla = new JavaLoanApp("c:\\LoanApp.dll");
System.out.println ("Here is the output from the JNI call: " + jla.getHomeEquityLoanRate());
}*/
public native float getHomeEquityLoanRate();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -