javac is the primary Java compiler, included in the Java Development Kit (JDK) from Sun Microsystems (now Oracle), and also in versions from other vendors.
3
votes
5answers
80 views
how to compile multiple java files when there are java files in other packages
I am compiling multiple files in a directory (javac *.java) but I have a problem when I try to do this:
I get compile errors saying that say javac cannot find a symbol of an object.
I have multiple ...
0
votes
1answer
19 views
Maven cannot find tools.jar w/ proper JAVA_HOME
I am having some trouble building a Maven project on my Windows machine. I have set my JAVA_HOME environment variable and Maven finds it.
Here are come results from a few executions:
'which mvn'
...
2
votes
1answer
26 views
why does “jdk6/javac -cp .:dependentJarCompiledWith1.7.jar Target.java” work fine?
I can use javac(1.6) to compile a class with a dependent jar that compiled with 1.7 in classpath, It just echo a warning message.
/usr/java/jdk6/bin/javac -cp .:/home/alvin/ship/b.jar a/A.java
...
3
votes
1answer
57 views
@ at start of filepath
What does an @ at the start of a filepath mean? As in:
@/var/folders/d0/tq_0nszs1v5fbf2cqgqslddm0000gn/T/files8321409089632164183
The context:
I was interested in extracting all the javac calls ...
0
votes
0answers
13 views
Javac : ignoring “should be declared in a file named…”
I'm using tools from the compiler API (javax.tools.JavaCompiler) to dynamically generated Java bytecode. I build source code and use API to compile it, then use it via reflexion.
That's perfectly ...
0
votes
1answer
31 views
Compiling my code into a .JAR using Terminal
Good Day,
I tried asking questions earlier but none of them could be answered as I failed to provide information. I will now list my problem below.
I have a Java Project with the following ...
0
votes
2answers
36 views
Eclipse showing “Unable to find a javac compiler” even though the installed JRE is 1.6 on building using Gradle
In eclipse, the installed JREs having only JDK1.6 and nothing else. But on building the project using gradle, i'm getting the following error.
Caused by: : Unable to find a javac compiler;
...
0
votes
0answers
38 views
Find location of .class file from “import string”
Imagine I have a file that contains the following import statement:
import a.b.c.D;
We can assume this class (a.b.c.D) has already been compiled. How can I find (programmatically) the location of ...
2
votes
1answer
84 views
Javac error when creating GCM demo app (Google App Engine Java/Windows 7)
I'm trying to create a GCM Demo Application for Android on Windows 7 following the "official" tutorial (http://developer.android.com/google/gcm/demo.html).
In particular, I am trying to create a ...
0
votes
2answers
71 views
Error while oprating javac -d: invalid flag? If I correct it, another package-not-found error appeared instead
I'm a newbie in Java EE. And I was following the steps of the book Head First Servlets and JSP to create a simple web application.
I wrote a simple servlet in Java. Now, I am planning to compile it ...
0
votes
1answer
18 views
Ant script fails to find javac compiler
I want to build my project in Eclipse using Ant. When running the XML script, I get the following error:
BUILD FAILED
C:\thesis\100GreatP\eclipse_ws\test\build.xml:82: Unable to find a javac ...
0
votes
2answers
61 views
importing ant build.xml to eclipse says “javac” task not found in target “compile”
I have jdk 6 installed on Mac OSX Mountain Lion and I am able to create new java projects directly from eclipse.
I am trying to modify the code written by alex holmes at json-mapreduce ...
1
vote
1answer
27 views
How to suppress bootstrap class path warning when targetting Java 6 and using JDK 7 compiler
Our open source app targets the Java 6 platform so we compile with the -source 1.6 and -target 1.6 options but when using JDK 7, we get this warning message, e.g.
For example:
$ javac -source 1.6 ...
1
vote
1answer
36 views
Compiling Junit on windows 8 command line error
I created a Junit test case using Eclipse and it works fine. I am trying to compile it using command line but can't seem to do it.
I was able to "compile" it fine..but now when I try to run it I get ...
10
votes
2answers
110 views
Equality comparison of `boolean` and `Object` allowed?
The following code
public class TestComparison {
public static void main(String[] args) throws Exception {
boolean b = true;
Object o = new Boolean(true);
...
0
votes
0answers
11 views
Netbeans project compilation traditionally
I wrote a java application in netbeans. contains simpke math function like simple interest, addition etc. I previously had set java to compile using javac which i do in cmd.Now i go to netbeans ...
0
votes
1answer
25 views
Ant: javac task: path versus pathelement
I would like to know the difference between the
following javac Ant tasks.
<!-- Task 1 -->
<javac destdir="${build}" classpath="classes.jar" debug="on">
<src path="${src}"/>
...
6
votes
2answers
181 views
Java class constant pool duplicates?
I have decompiled a class with javap and I'm seeing some duplicates in the Constant Pool section, like this:
#19 = Class #350 // java/lang/StringBuilder
... Some other class ...
3
votes
1answer
64 views
adding methods to existing java class and recompile with my project
I'm trying to do something that should be pretty easy but some how I keep failing...
the idea is to take existing java class from java repository (in our case java sun)
modify it a bit.. recompile ...
0
votes
1answer
75 views
Unable to compile MaxTemperatureMapper.java for Hadoop examples: package org.apache.hadoop.mapreduce does not exist
I have been trying for quite a while to compile the first example from the book on my school's lab computer, playing with the HADOOP_CLASSPATH variable and the -classpath flag with javac, to no avail.
...
-1
votes
0answers
89 views
'javac' is not recognized as an internal or external command, operable program or batch file
I get the below error while executing batch file from command prompt, though I have already set the environment variable path for 'javac'.
'javac' is recognized when I type only 'javac' in the command ...
0
votes
2answers
95 views
package java.nio.file does not exist
I'm working out how to compile java from command line at the moment. Here's what I've got:
Here's what I've got:
/myjava/compile.cmd
/myjava/src/a_pack/HelloWorld.java
/myjava/src/b_pack/Inner.java
...
1
vote
1answer
45 views
Compile all files in src?
Here's what I've got:
/myjava/compile.cmd
/myjava/src/a/HelloWorld.java
/myjava/src/b/Inner.java
/myjava/src/b/Inner2.java
/myjava/bin
HelloWorld:
package a_pack;
import b_pack.Inner;
import ...
1
vote
3answers
42 views
How to easily create Java bytecode dependent regression tests?
I have identified a bug in my application (which processes bytecode using soot) that only arises on specific bytecode instructions.
I want to create a test for that specific case. However, I'm not ...
1
vote
4answers
93 views
Execute two seperate classes with one single java command
Is it possible to execute two separate classes with one single java command?
I would like to run a few java programs concurrently (it should start at the same time) for my project.
Example: I have ...
4
votes
1answer
86 views
Running java files without ugly command prompt box in the background
I made a java program with a GUI using eclipse so whenever I want to run it I run it there, but my friend wants to run it on his computer so I made a class-file using javac in command prompt and also ...
0
votes
1answer
116 views
Sublime Text 2 - Out of the box Compiling and running Java programs
OS:
Distributor ID: Ubuntu
Description: Ubuntu 12.04.2 LTS
Release: 12.04
Codename: precise
Sublime Text 2 is 2.0.1 for Linux 32-bit
There is JAVA_HOME set up in my environment and ...
0
votes
1answer
51 views
Ant javac difference between target and source attributes?
I have Java 6 and 7 installed. How do I specify ant to use Java 6 to compile? I've seen some threads that set the java 6 compiler path, and that worked, but I also saw threads like this Setting the ...
-1
votes
3answers
64 views
Exception in thread “main” java.lang.NoClassDefFoundError: javapasswords in Linux [closed]
i have code like this,
import javapasswordsdk.PSDKPassword;
import javapasswordsdk.PSDKPasswordRequest;
import javapasswordsdk.exceptions.PSDKException;
etc.............
I am getting below error, ...
6
votes
1answer
94 views
Why won't javac accept `x = x+++++y`?
From the perspective of Compiler Theory, why would the javac compiler not accept a statement of the form x = x+++++y but accept x = x+++ ++y ?
1
vote
0answers
38 views
Are Filer's originating elements useful?
I'm working on a Java program (Dagger) that uses the Java annotation processing API to generate code. When our program encounters an annotation in Foo.java, it generates Foo$$InjectAdapter.java. We ...
3
votes
1answer
51 views
How to make maven fail on raw types?
I want to make maven compile fail if somewhere in the code, raw types (missing generics) are used. I tried the following:
The javac does not recognize these errors (the eclipse compiler does); ...
5
votes
1answer
76 views
Java method overload - ambiguity
While I was doing some runs to test some code in this thread I found out a strange thing, If you consider the following program
import java.util.ArrayList;
import java.util.List;
public class ...
0
votes
3answers
70 views
Use my own classes in a servlet (Java/Tomcat/Linux)
For the last 3 days I couldn't find a single answer for this problem. I need to be able to use my own classes in my servlets.
I am pretty sure that my files hierarchy is correct:
|-WEB-INF/
...
3
votes
3answers
78 views
What are the differences of explicit and implicit instantiating String class in java
I have been told that creating String instance like this
String s = new String("Don't do this"); // explicit
has a performance problem since it creates two instance of string on for double quoted ...
0
votes
1answer
47 views
ant javac can't find other project compiled classes
The following is a simplified version of my ant script (it's got the project element etc).
I'm new to ant and unable to figure out why 'compileTests' doesn't compile, whereas 'compileFoo' does. ...
0
votes
2answers
45 views
Configure Maven to use javac -O
There is a option javac -O to compile the optimized java code according to the Javac manual. Can I use maven to use this flag?
-2
votes
1answer
48 views
Data Flow Analysis of Java Byte code [closed]
Is there any jar available to generate Data Flow Analysis for Java Byte code. Or is there any other way.
0
votes
2answers
104 views
javac does not work in ubuntu terminal
When I try to javac a java program in my ubuntu terminal, I get,
The program 'javac' can be found in the following packages:
* default-jdk
* ecj
* gcj-4.6-jdk
* gcj-4.7-jdk
* openjdk-7-jdk
* ...
1
vote
1answer
51 views
What is the sequence followed by the JVM when running a Java program?
I need to know what sequence the JVM follows when running a user program. Let's say the user has made a program Runner.java and has created a jar file for this named runner.jar.
Now if I
set ...
0
votes
0answers
36 views
Linux Server Compiling Multiple java classes Fails
I'm Using Linux Cent OS 6.0 Basic Server Edition with nearly nothing installed except java 7 and tomcat
I've Looked around the Internet And I haven't had much luck finding a good manner to compile my ...
1
vote
1answer
69 views
Deprecated compiling error
I'm trying to compile my Java program, however I am getting a "Deprecated File" error.
I normally compile the file by typing "Javac FileName.java", however I get an error saying:
FileName.java ...
0
votes
2answers
38 views
Force Maven to use System's javac
I have made some code changes to javac and would like maven to use the version of javac that I changed. Unfortunately, it appears that maven ships its own javac implementation. How can I get maven to ...
2
votes
1answer
103 views
Java - classNotFound Exception from Windows command line but not Eclipse
My code works fine in Eclipse, no build path errors or anything, however when I try to run my Java program from the command line, I get a classNotFound Exception on one of my inner classes. Not only ...
0
votes
1answer
77 views
Java: Cannot find symbol: variable Objects
I generated methods hashCode() and equals(Object obj) by netbeans insercode. In netbeans I can compile without errors, but when I compile it on my server with javac:
bangserver/Login.java:3: cannot ...
0
votes
2answers
65 views
Deploying Java projects to other users
I am new to Java and is using Eclipse.
Whenever I have build a Java (JFrame) project successfully on my PC and when I deploy the java project files to other users, I have to compile the projects on ...
0
votes
1answer
30 views
ant .svn is copied, source includes are ignored
<target name="compile">
<javac destdir="${build.dir}/classes"
classpathref="${build.classpath}"
debug="on">
<src path="${src.dir}"/>
<include ...
2
votes
1answer
25 views
Ant attributes duplication for javac
I have an Ant build with a lot of javac tasks.
I want all of them to be executed with the following attributes:
debug = "true" debuglevel = "lines,vars,source"
(by default debugging information is ...
2
votes
2answers
59 views
Compile and execute java source file in memory
Say I have a String containing the content of a .java file. Are any APIs out there that would allow me to compile this source file into a virtual .class file (i.e. generate and store the content in ...
1
vote
1answer
49 views
Extract a reference graph while compiling Java codebase?
Background:
I'm working with (for me) a reasonably large codebase (eg: I've only got a few of the related projects checked out at the moment, and its > 11000 classes).
Build is ant, Tests are ...


