我在客户端使用标记将降价代码呈现为 html。
但现在我需要在 Java 的服务器端做同样的事情。为了获得完全相同的 html 代码,我必须使用除了其他 java markdown 库之外的标记。
如何在 java 中加载“marked.js”文件并运行 javascript 代码?
marked.parser(marked.lexer("**hello,world**"));
我在客户端使用标记将降价代码呈现为 html。
但现在我需要在 Java 的服务器端做同样的事情。为了获得完全相同的 html 代码,我必须使用除了其他 java markdown 库之外的标记。
如何在 java 中加载“marked.js”文件并运行 javascript 代码?
marked.parser(marked.lexer("**hello,world**"));
2个选项:
或者:
直接使用 Java SE 6 及更高版本中的内部 ScriptEngine,它与 Rhino 捆绑在一起。请参阅RunMarked
下面根据您的需要调整的示例。
/*
* Licensed under MPL 1.1/GPL 2.0
*/
import org.mozilla.javascript.*;
/**
* RunScript: simplest example of controlling execution of Rhino.
*
* Collects its arguments from the command line, executes the
* script, and prints the result.
*
* @author Norris Boyd
*/
public class RunScript {
public static void main(String args[])
{
// Creates and enters a Context. The Context stores information
// about the execution environment of a script.
Context cx = Context.enter();
try {
// Initialize the standard objects (Object, Function, etc.)
// This must be done before scripts can be executed. Returns
// a scope object that we use in later calls.
Scriptable scope = cx.initStandardObjects();
// Collect the arguments into a single string.
String s = "";
for (int i=0; i < args.length; i++) {
s += args[i];
}
// Now evaluate the string we've colected.
Object result = cx.evaluateString(scope, s, "<cmd>", 1, null);
// Convert the result to a string and print it.
System.err.println(Context.toString(result));
} finally {
// Exit from the context.
Context.exit();
}
}
}
实际上,我注意到了Freewind 的回答,我会写完全一样的(除了我会Files.toString(File)
使用 Google Guava 直接加载库)。请参考他的回答(如果您觉得他的回答有帮助,请给他加分)。
public static String md2html() throws ScriptException, FileNotFoundException, NoSuchMethodException {
ScriptEngineManager manager = new ScriptEngineManager();
ScriptEngine engine = manager.getEngineByName("JavaScript");
File functionscript = new File("public/lib/marked.js");
Reader reader = new FileReader(functionscript);
engine.eval(reader);
Invocable invocableEngine = (Invocable) engine;
Object marked = engine.get("marked");
Object lexer = invocableEngine.invokeMethod(marked, "lexer", "**hello**");
Object result = invocableEngine.invokeMethod(marked, "parser", lexer);
return result.toString();
}
您可以使用rhino在运行 java 的服务器上运行 JavaScript。