1
vote
3answers
42 views
Comfortable Javadoc API in the browser (web application)
I'm looking for a web application (either an existing web site or a site which I can generate and set it up for myself, or a greasemonkey script), which lets me browse http://java. …
3
votes
5answers
76 views
How do I find out what jar files are actually used when compiling a java project.
I'm currently passing a very large classpath to javac to compile a java project.
I know that a number of those jar files aren't needed.
Is there a simple way of finding out which …
1
vote
3answers
156 views
Where is the source code for the java compiler?
I'm looking for the source code of Sun's standard java compiler, javac.
jdk1.6.0_07 has a few classes that are related, but they are interfaces
(java.lang.Compiler and javax.tools …
4
votes
6answers
104 views
How to intentionally cause a custom java compiler warning message?
I'm about to commit an ugly temporary hack in order to work around a blocking issue while we wait for an external resource to be fixed. Aside from marking it with a big scary comm …
1
vote
5answers
159 views
Should Java programs compiled with debugging information not be used in a production system?
Is there any reason I should avoid compiling in debugging information with Javac in my Java classes for use in a production server? Are there any speed or security concerns I shou …
6
votes
3answers
900 views
Is there a performance difference between Javac debug on and off?
If I switch on the generating of debug info with Javac then the class files are 20-25% larger. Has this any performance effects on running the Java program? If yes on which conditi …
1
vote
7answers
124 views
Will JRE 1.4 support classes compiled with Java 1.5 & 1.6?
Will code compiled using 1.5 and 1.6 run on a 1.4 JRE? We weren't sure which Java versions the 1.4 JRE supports.
We know that if the code in question implements 1.5 or 1.6 suppor …
1
vote
5answers
121 views
Find the gender from a name
Hi guys, I recently confronted with a weird yet interesting question. The questions is as follows:
Need to write a program which can give the gender as output based on the name.
Ex …
0
votes
2answers
93 views
javac not working in windows command prompt
I'm trying to use javac with the windows command prompt, but its not working.
After adding the directory "C:\Program Files\Java\jdk1.6.0_16\bin\" to the end of the environment pat …
0
votes
5answers
120 views
How to compile java code?
Hi,
I have a bunch of java files and I am running the following code in an attempt to compile them.
"\Program Files\Java\jdk1.6.0_16\bin\javac" Main.java
And I am being shown t …
2
votes
3answers
187 views
How can I suppress javac warnings about deprecated api?
When I compile, javac outputs:
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.`
I wish to suppress this warning. Tr …
1
vote
1answer
55 views
Failure to import javax.servlet
I know this is a common error, but bear with me. I've pursued the CLASSPATH problem and I don't think that is the issue. I'm getting an error like this.
./src/process.java:2: pac …
1
vote
1answer
369 views
Find type parameter of method return type in Java 6 annotation processor
I'm writing a tool that uses the annotation processor to generate source code depending on the return type of methods of an annotated class. The return type is always some subtype …
2
votes
2answers
72 views
How do I find javac.exe programmatically?
I'm calling javac from C# code. Originally I found its location only as follows:
protected static string JavaHome
{
get
{
return Environment.GetEnvironmentVariable …
1
vote
0answers
50 views
What is the problem when javac compiler creates a jarfile with lowercase class file names?
When I run the javac compiler it compiles code and creates a JAR file, but the names of the class files inside the JAR are all in lower case. However, the classes within the source …
