How does js call methods of JAVA classes? Specific code
Use ajax method.
First, pass the class name and method name to be called as parameters to a servlet. This step can be accomplished using a framework or directly using the XMLHttpRequest object.
In addition, the class name to be called and the complete package path of the class are best written in the configuration file
Assume here that the class name is Hello, the method name is sayHello, and the sayHello method takes no parameters, and the class path is com.demo.Hello
Configuration fileAjaxConfig.properties
Hello = com.demo.Hello
So the parameters passed in are class=Hello&method=sayHello
Do the following processing in the servlet:
String className=request.getParameter("classname");
String methodName=request.getParameter("method");
String classPath=null;
.
Read the configuration file, take out the value corresponding to className and put it into the classPath variable (there are many ways to do this. How to read the configuration file, you can find information online, there are many, I will not go into details)
.
Class c=Class.forName(classPath); //Load the class you specified
Class param[]=new Class[0]; //The parameters of the method are 0
Method m=null;
String returnValue=null; //Return value
try {
m = c.getMethod("sayHello",param); //Get the specified method in the class you specified
} catch (SecurityException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
returnValue=(String)m.invoke(c.newInstance(), new Object[0]); //Call the method you specified
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Finally, return the value of returnValue to the client
Class Hello.java
public class Hello
{
public String sayHello()
{
return "hello";
}
}
If you don’t understand, add 67919823 and we’ll discuss it together
How to use objects in java in javascript
In order to facilitate the interaction between web pages and Android applications, the Android system provides a mechanism for JavaScript web scripts in WebView to call Java class methods. Just call the addJavascriptInterface method to map a Java object to a JavaScript object.
1. Mapping Java objects to JavaScript objects
code show as below:
mWebView = (WebView) findViewById(R.id.wv_content);
mWebView.setVerticalScrollbarOverlay(true);
final WebSettings settings = mWebView.getSettings();
settings.setSupportZoom(true);
//WebView enables Javascript script execution
settings.setJavaScriptEnabled(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
//Mapping Java objects to a Javascript object named "js2java"
//JavaScript can call Java object methods through "window.js2java"
mWebView.addJavascriptInterface(new JSInvokeClass(), "js2java");
code show as below:
/**Web page Javascript calling interface**/
class JSInvokeClass {
public void back() {
activity.finish();
}
}
2. Example of JavaScript calling Java object
Call the back method of the above JSInvokeClass class object, as follows:
Copy code The code is as follows:
window.js2java.back();
How to use methods in java classes in JavaScript
It’s hard! One is the front desk and the other is the back desk, but AJAX realizes this idea! . Below is an AJAX example:
// JavaScript Document
var xmlHttp;
function GetXmlHttpObject()
{
var xhr=null;
try
{
// Firefox, Opera 8.0, Safari
xhr=new XMLHttpRequest();
}catch (e)
{
//Internet Explorer
try
{
xhr=new ActiveXObject("Msxml2.XMLHTTP");
}catch (e)
{
xhr=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xhr;
}
function getDataByDept(str)
{
xmlHttp = GetXmlHttpObject();
if(xmlHttp==null)
{
alert("Sorry! Your browser does not support AJAX!");
return;
}
var url = "/intcard/jsp/employee.do?method=getByDept"
xmlHttp.onReadyStateChange=stateChanged;
xmlHttp.open("post",url,true);
xmlHttp.setRequestHeader('Content-Type', 'application/x--form-urlencoded;charset=UTF-8');
xmlHttp.send("dept=" str);
}
function stateChanged()
{
if(xmlHttp.readyState == 4)
{
var result = xmlHttp.responseText;
document.getElementById("select_employees").innerHTML = result;
}
}
The idea is to call the JS method through the event of the HTML control, and call the server script through the open method of the httprequest object in the JS process ----- In the server script, you can use the javabean method and pass the calculation results to JS.Curve realizes your thoughts
The above is the detailed content of How to call JAVA class method in js. For more information, please follow other related articles on the PHP Chinese website!

This article addresses the Windows "INVALID_DATA_ACCESS_TRAP" (0x00000004) error, a critical BSOD. It explores common causes like faulty drivers, hardware malfunctions (RAM, hard drive), software conflicts, overclocking, and malware. Trou

This article provides practical tips for maintaining ENE SYS systems. It addresses common issues like overheating and data corruption, offering preventative measures such as regular cleaning, backups, and software updates. A tailored maintenance s

Article discusses editing Windows Registry, precautions, backup methods, and potential issues from incorrect edits. Main issue: risks of system instability and data loss from improper changes.

Article discusses managing Windows services for system health, including starting, stopping, restarting services, and best practices for stability.

What does the drive health warning in Windows Settings mean and what should you do when you receive the disk warning? Read this php.cn tutorial to get step-by-step instructions to cope with this situation.

This article identifies five common pitfalls in ENE SYS implementation: insufficient planning, inadequate user training, improper data migration, neglecting security, and insufficient testing. These errors can lead to project delays, system failures

This article identifies ene.sys as a Realtek High Definition Audio driver component. It details its function in managing audio hardware, emphasizing its crucial role in audio functionality. The article also guides users on verifying its legitimacy

This article addresses the failure of the Windows asio.sys audio driver. Common causes include corrupted system files, hardware/driver incompatibility, software conflicts, registry issues, and malware. Troubleshooting involves SFC scans, driver upda


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
