Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
2k views

Is there a java classfile / bytecode editor to edit instructions?

Is there a utility (or eclipse plugin) for editing java class files? I'd like to manipulate the bytecode of a java class file without recompiling it nor having a complete buildpath. E.g. to rename ...
5
votes
4answers
136 views

How to generate .class files?

I would like to write a compiler for a toy-language for Java. I would like to generate runnable .class files. I was wondering what is the best library or tool available for doing this? I know I could ...
4
votes
1answer
63 views

When is the JVM bytecode access modifier flag 0x1000 (hex) “synthetic” set?

For some Java byte code parser project I read the JVM spec and figured out that the bit mask values of the Java virtual machine class file format access modifier fields are ACC_PUBLIC = 0x0001 ...
4
votes
3answers
472 views

How do I run .class files on windows from command line?

I'm trying to run .class file from command line. It works when I manually move to the directory it's stored in, but when I try something like this: java C:\Peter\Michael\Lazarus\Main it says it ...
3
votes
1answer
64 views

Eclipse .class outline viewer

I am used to work on Visual Studio for C# coding and eclipse for Java coding. Though my experience with eclipse is very positive, I lack the nice and welcoming text file that VS generates for IL ...
3
votes
3answers
109 views

In Java, is there a way load class implementing interface that does not exist?

I've seen Java doing a lot of magic, but is it possible to do this: At runtime, using (for example) ClassLoader.defineClass, load class A that implements interface B. The interface B does not ...
3
votes
3answers
78 views

List compiled java class's members

I have a compiled java class file : HelloWorld.class Is there a command-line command I can use to list all members of the class?
3
votes
1answer
205 views

Will the JVM be extended to handle generics?

What do you think? Will the JVM ever get support for generics? Quite likely that would not only require substantial changes to the JVM, but also to the class file format, but languages running on the ...
3
votes
4answers
236 views

Java: .class file and java.lang.Class

Is java.lang.Class the same as the actual .class file? i.e. is the content equivalent? I want to send the .class over socket, and was wondering if instead of trying to find and load the actual .class ...
1
vote
3answers
267 views

Eclipse: How to prevent it from cleaning the bin folder every build?

I am now doing a project using Eclipse, and I have some resource files (e.g., image, text) saved in the bin folder, and these files are needed by the program. However, with every build, Eclipse would ...
1
vote
0answers
122 views

Using Xcode 4.x to open .class (java compiled) files

I used to use Xcode 3 to open compiled java files. It automatically decompiled it. This way, I was able to read the name of the methods that where available in a .class file. However, since I updated ...
1
vote
1answer
215 views

Any Java counterpart for `/usr/bin/strip`?

Is there any tool that can remove debug info from Java .class files, just like /usr/bin/strip can from C/C++ object files on Linux? EDIT: I liked both Thilo's and Peter Mmm's answers: Peter's was ...
1
vote
6answers
334 views

Reading a Java .class file

I want to write a tool which generates some code using a compiled .class file as input. Specifically, I want to read from this class file: Methods, with annotations Method parameters, with ...
1
vote
2answers
1k views

How can I compile an Java program in Eclipse without running it?

I would like to compile my Java program in Eclipse but not run it. I can't understand how I do it. How can I compile an Java program to .class files in Eclipse without running it?
1
vote
1answer
157 views

Is there an equivalent to BCEL (Java .class manipulation) but in C or C++

Is there a C or C++ compatible library for reading and writing Java class files? I.e. something like Apache BCEL.
0
votes
1answer
70 views

Make File to run on Linux/ MAC OS to compile .Java Files to an exe form

I am a beginner in Java. I made my Java program using NetBeans. Now I have my .jar file. But I would like to know how to write commands to compile .Java classes to .Class and then build a jar using ...
0
votes
3answers
42 views

How can I test if my jar file has any unresolved dependencies?

I'm writing a custom tool to build jar files from our build tree. We like to build "minimal" jar files that contain only the .class files actually referenced from the "root" class (where main() lives) ...
0
votes
2answers
112 views

How javap works for java library files?

JRE contains the .class files for library classes. When these .class files in JRE folder will be used? Does JRE contains the .class files for all library classes. Let us take an example.. when we ...
0
votes
2answers
69 views

Searching through *.class files in eclipse

Is it possible to search for terms (such as method names) in .class files (from Referenced Libraries) in eclipse (I am able to view them automatically with JD Java Decompiler, so if I go through ...
0
votes
1answer
168 views

Searching for .class files in an eclipse project's Referenced Library

I'm deconstructing a program, and tracing various .class files from its Referenced Libraries in order to do so. I've tried to use Eclipse's file search but while it can easily find all the .java files ...
0
votes
0answers
52 views

Adobe Flex 4 not creating .class files?

I am working within Flex4(FlashBuilder4). I have recently picked up from where a previous developer left off. I don't have a way to contact him, or I would have done so... I have some .java files ...
0
votes
3answers
145 views

Tool to check package name and class name of the class within a .class file

Is there some tool or technique to let me query the contents of a Java .class file? I want to know the fully qualified name of the class and what method it defines. I thought that perhaps javap could ...
0
votes
2answers
754 views

Javac can't find .class files, have right classpath

Although I'm not new to programming in general, I am new to java, and it seems to work a little bit differently. When trying to compile a .java with javac it gives me this error: cannot find symbol. I ...
0
votes
3answers
711 views

Dynamically create a gridview from a class(.cs) file

I want to create a gridview form a class and send that gridview as mail. I know the mailing part but how to create a gridview from a class file without using an aspx file. I am doing so because a ...
0
votes
6answers
227 views

How to read the fully qualified name of a .class file

Hey, I think the title sums it, but still. I need to extract the fully qualified name of an object from its compiled .class file, could anyone point me in the right direction? Thanks, Adam.
0
votes
2answers
86 views

Finding class files that Eclipse builds

When Eclipse builds my workspace, I assume that it creates Java .class files. What else should otherwise deploy to my running JBoss AS? Do you know where I can find these class files that Eclipse ...
0
votes
1answer
2k views

How to get a class file by Eclipse?

I wrote an application in the Eclipse, which was successfully compiled and run. After that, in a corresponding directory I found *.java and *.class files. Then I have deleted the *.class file and now ...
0
votes
3answers
156 views

Looking for a place to store temporary .class files on Windows (some similar app support on Mac) [closed]

Possible Duplicate: Storing a file in the user’s directory in cross-platform Java I am working on a java project and the java application ends up making some .class files. Currently, ...