将字符串转换为 Java 代码
开发人员寻求将存储在数据库中的字符串转换为 Java 可编译代码,旨在利用它在条件结构中。
一个建议的解决方案是利用 Java Compiler API,特别是 JavaCompiler 类Java 6 中可用。使用此 API,开发人员可以在内存中构建 Comparator 对象的源代码。
警告: 使用 JavaCompiler API 需要谨慎,因为编译任意 Java 代码可能会导致摆出一定的姿势
实现:
String comparableClassName = ...; // Define the class to be compared String comparatorClassName = ...; // Assign a distinct name to prevent conflicts String source = "public class " + comparatorClassName + " implements Comparable<" + comparableClassName + "> {" + " public int compare(" + comparableClassName + " a, " + comparableClassName + " b) {" + " // Replace 'expression' with the desired comparison logic" + " return " + expression + ";" + " }" + "}"; // Obtain the necessary objects from the JavaCompiler API JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); // Configure the compilation process as per the API guidelines Writer out = null; JavaFileManager fileManager = null; DiagnosticListener<? super JavaFileObject> diagnosticListener = Iterable<String> options = null; Iterable<String> classes = null; Iterable<? extends JavaFileObject> compilationUnits = new ArrayList<? extends JavaFileObject>(); compilationUnits.add( new SimpleJavaFileObject() { // As described in the API documentation, load the 'source' string as the source code } ); // Initiate the compilation process compiler.getTask(out, fileManager, diagnosticListener, options, classes, compilationUnits).call(); // After compilation, instantiate the Comparator Comparator comparator = (Comparator) Class.forName(comparableClassName).newInstance(); // Utilize the 'comparator' for comparing objects based on the pre-defined logic
注意:为了使此解决方案发挥作用,适当的 Java 表达式应存储在数据库字段中,使用 'a' 和 'b' 作为参考。
以上是如何使用 Java 编译器 API 将数据库中的字符串编译到 Java 比较器中?的详细内容。更多信息请关注PHP中文网其他相关文章!