The java-compiler-api tag has no wiki summary.
7
votes
2answers
3k views
How to set classpath when I use javax.tools.JavaCompiler compile the source?
I use the class javax.tools.JavaCompiler (jdk6) to compile a source file, but the source file depends on some jar file. How to set the classpath of the javax.tools.JavaCompiler?
6
votes
2answers
413 views
Java Dynamic Code Generation with support for generics
Is there any tool which provides Java dynamic code generation and that also supports generics?
Javassist for example, is the kind of tool that I need, but it does not support generics.
I wrote a ...
6
votes
4answers
859 views
compiling and running user code with JavaCompiler and ClassLoader
I am writing web app for java learning. Using which users may compile their code on my serwer + run that code.
Compiling is easy with JavaCompiler:
JavaCompiler compiler = ...
4
votes
1answer
99 views
Is there a way to generate a unique variable name in a given scope?
Given a Scope, is there a function that can generate a unique variable name such that a variable declaration for the unique name could be inserted in scope and the resulting source ...
3
votes
2answers
125 views
Programmatically compile java with JavaCompiler?
I got this Java code from another Stack Overflow thread
import java.io.*;
import javax.tools.JavaCompiler;
import javax.tools.ToolProvider;
public class Main {
public static void main(String[] ...
3
votes
2answers
548 views
how to run code compiled by JavaCompiler?
Is there any way to run program compiled by JavaCompiler? [javax.tools.JavaCompiler]
My code:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
...
3
votes
1answer
382 views
is javax.tools depends on JDK?
i want to use JavaCompiler to dynamic create some classes.
i find the source code of javax.tools package, but there is no implementation, some posts on internet says it depends on tools.jar, i am not ...
3
votes
1answer
364 views
Compiling a set of Java files inside a directory tree with the JSR 199 Compiler API
I'm trying to compile many files using the Compiler API.
Say I have a directory structure
.../program
+/org
+/foo
|+ Main.java
+/bar
+ Tools.java
Is there any way to discover ...
3
votes
3answers
3k views
How do I use JDK6 ToolProvider and JavaCompiler with the context classloader?
My usage case is compiling generated source files from a java program using the ToolProvider and JavaCompiler classes provided in JDK 6. The source files contain references to classes in the context ...
2
votes
2answers
124 views
Is it possible to programmatically compile java source code in memory only?
I have found many references explaining how to programmatically compile a Java class using the JavaCompiler class:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
int result = ...
2
votes
3answers
60 views
How can I load a class which is not in the same jar archive as the current class?
Situation:
I'm making a simulator for plotting the time complexity of algorithms. The students can add load their own .java file to run it.
My program compiles (with 'JavaCompiler') the .java file. ...
2
votes
2answers
171 views
How do I find the type declaration of an identifier using the Java Tree Compiler API?
I have the name of a variable/identifier, say, x, and the JCCompilationUnit and Scope. Is there a way to find the type of x?
2
votes
1answer
168 views
Classpath of classes compiled with Javassist
As the title suggests, what is the classpath of classes compiled with Javassist?
My scenario is: Class A is compiled with Javassist. Class B is compiled with Java Compiler API and references Class A. ...
1
vote
3answers
48 views
Best choice? Edit bytecode (asm) or edit java file before compiling
Goal
Detecting where comparisons between and copies of variables are made
Inject code near the line where the operation has happened
The purpose of the code: everytime the class is ran make a ...
1
vote
1answer
54 views
Is there a TreeVisitor for visiting expression trees in evaluation order?
Using the Java Compiler Tree API, one can traverse the leaf tree of a TreePath and its children using a TreeVisitor.
Is there a TreeVisitor implementation that visits all "nodes" in evaluation order? ...
1
vote
1answer
49 views
JAXB compile error, unused parameters for afterUnmarshall
I'm using void afterUnmarshal(Unmarshaller unmarshaller, Object parent) in my beans and have got the complier set to fail if parameters are not used.
The compiler seems to be okay with unused ...
1
vote
1answer
75 views
Webstart and JavaCompiler API restrictions
I have an application that has only signed jars, all by the same certificate, mine. I wan't to run the application with Webstart. The application runs a compiler, and the compiled code runs LWJGL. ...
1
vote
4answers
208 views
Modify byte code to make a method return true
I have class file has a method like this:
public boolean validate(String str) {}
There're lots of codes inside this validate method, but I only want to make it always return true or false. Can ...
1
vote
1answer
169 views
How to dynamically compile Java classes in Google App Engine
In answers to this question, I learned that it is not possible to invoke the Java Compiler in javax.tools from a GAE app.
Does this limitation still apply?
If so, what are my options for compiling ...
1
vote
1answer
137 views
Can I use JavaCompiler in Google app Engine?
Is there a way to invoke the Java source compiler via JavaCompiler in Google App Engine?
(I didn't see any classes in javax.tools on the white list, so I'm afraid the answer is no)
UPDATE
I'm ...
1
vote
4answers
195 views
Java Compiler API with classes that depend on each other
I'm using Java Compiler API to compile in-memory classes. That is, classes are compiled to bytecode (no .classes files stored in disk) and then loaded by reconstructing the bytecode.
Sometimes, I ...
1
vote
1answer
52 views
Java default compilation directory
I'm using the Java Compiler API to build a couple of classes at runtime. However, I'd like these classes to be compiled into the default compilation directory, to where other class files are ...
1
vote
0answers
372 views
cannot use HttpSession.setAttribute method when compiling via JavaCompiler tool library
I am using the following code to generate and compile java program inside another java program:
import javax.tools.*;
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
compiler.run(null, ...
1
vote
2answers
1k views
Null Pointer Exception while using Java Compiler API
MyClass.java:
package test;
public class MyClass {
public void myMethod(){
System.out.println("My Method Called");
}
}
Listing for SimpleCompileTest.java that compiles the ...
0
votes
0answers
12 views
Using Java Compiler API to compile multiple java files
Hi I have requirement to create ,compile and load java classes run time. Using FTL i am creating java source files , and able to compile the source if there is no dynamic dependency.
To elaborate ...
0
votes
3answers
43 views
Compiling different scetions for different version - Java
Is there any way to compile BlackBerry Java code for different sections using eclipse ?
There is a class named LocationInfo available in BB version OS 6.0 onwards.
I get a compilation error if try ...
0
votes
1answer
37 views
Java Character IO between java executions
Using javax.tools.JavaCompiler and javax.tools.ToolProvider, I'm wrapping a user-input string (which should be a method) with a predefined class all within a large string and executing it within my ...
0
votes
1answer
124 views
Java Compiler API NullPointerException
I am using this code to compile a Java file at runtime. First of all, here is my directory tree (in Eclipse).
+---- src
+----- package
+------ Compile.java
+
+
+---- temp
+----- anotherpackage
...
0
votes
2answers
271 views
How to set the source for compilation by a CompilationTask
I do not know how to set the source file for a compilationTask.
I tried this:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
List<String> optionList = new ...
0
votes
1answer
106 views
Running Java Code from Within Java [closed]
Possible Duplicates:
using eval in Java
Loading external source code and using them internally (by re-compiling or something)
I want to simulate an 'eval' in Java such that the function ...
0
votes
0answers
95 views
Adding a jar file to build path, as a String option in JavaCompiler.compile()
I'm trying to compile some java file dynamically, the compilation process works fine, until I try to add a jar file to the build path, any form of adding it did not work for me.
if every option is a ...
0
votes
2answers
908 views
Programmatically compile Java class in a package stored in an arbitrary sub folder
I am looking to compile an application in Java, made up of a various number of java classes in a certain number of packages. At the command line, I can change to the folder containing the root ...
-3
votes
5answers
77 views
How could we explain that JVM and Java compiler are diffrent? [closed]
I do not know if I should ask this here,But I was thinking of some way, may be the program that could explain to newbies that the JVM and Java Compiler are two DIFFERENT things.