Class files are the format used by the Java Virtual Machine.

learn more… | top users | synonyms

3
votes
4answers
111 views

The code of method … is exceeding the 65535 bytes limit

Inside a jsp I have a small header : <%@ page import="java.util.*"%> <% HttpSession CurrentSession = request.getSession(); ... %> ...and a big html <html> ... </html> ...
0
votes
1answer
62 views

Cannot start Java RMI Server class

I seem to be following instructions in the book I'm using as well as in Oracle's Java SE docs but cannot overcome the following error: Error: Could not find or load main class ...
2
votes
2answers
47 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
2answers
152 views

Could not find main class : Program will exit

I was messing with the JRE setup on Eclipse. Originally the project was set to 1.6 and when set to 1.7, my program started showing a lot of errors. So when i switched back to 1.6, all the compile time ...
0
votes
0answers
33 views

-d command while creating folder for .class file

hey guys i want to create a folder which will save all the .class files of my project. but i want it to do with command prompt using -d command. my project directory is like this: my poject is in ...
0
votes
1answer
46 views

Why does some java code/quartz-code require a .class file?

Why does quartz or any java code require a .class file ? What is so special about the .class file that a regular api cannot provide ? Code - JobDetail job = JobBuilder.newJob(HelloJob.class) ...
6
votes
2answers
142 views

Java inner class inconsistency between descriptor and signature attribute? (class file)

I'm trying to understand if there's a reason in the spec for the discrepany between java descriptors and signatures for inner classes. (I'm looking directly at the content of the class files here, but ...
0
votes
2answers
98 views

Java import directories

I want to ask smaller question about Java VM and thing about it. If I understand import process correctly, then when I request contents of packages by import keyword in Java, packages are being ...
0
votes
1answer
50 views

Generating interface with ASM is not working

I need to generate an interface at runtime. This interface will be used in a dynamic proxy. At first, I found this article from Google, but then I found I could just use ASM instead. Here is my code ...
-2
votes
1answer
27 views

How can I edit a class File?

I am trying to Edit a dot class File for Markus Persson's game MiniCraft to add a Save button to the game. But I can't Figure out how to edit the class files.
1
vote
4answers
263 views

Can c++ code read java .class files?

I have been working in java for a while now, and want to learn how c++ works when it comes to compilation and executed. I was wondering if there is a way to convert compiled c++ class into .class ...
5
votes
3answers
95 views

Why does a class file not contain sufficient information to provide the name of the pointer that was null in a NPE?

In response to Can Java's NullPointerException be changed to report on which variable was null? thorbjorn-ravn-andersen says: No, the debug information in the class file does not contain enough ...
2
votes
4answers
1k views

How to change already compiled .class file without decompile?

I want to change .class file's method. I installed JD Eclipse Decompiler and opened the .class file. I added some codes and save .class file. But, .class file is not changing. I don't know how to ...
4
votes
1answer
84 views

number of instructions in foo.class java file

I have binary of a java program say foo.class. Is it possible that I count the number of instructions in that class file ? or do I have to have the source code to count the number of instructions.
1
vote
1answer
142 views

How do I get the line number of the source code from a byte offset in java?

I am manipulating a .class file. I am using the InstrutionHandle package to get the instructions one at a time. I have the byte offset of the instruction via getPosition() method , can i get the ...
1
vote
2answers
634 views

Open Java Byte Code in readable format and edit it [closed]

I want to open the Byte code (Java Binaries) generated by Java Compiler using some kind of editor, which allows me to view the byte code (Raw, but human understandable, in the format defined here) ...
0
votes
0answers
33 views

Associate .class files in maven dependencies of a child project with .java files of Trunk project?

I have a trunk project imported into Eclipse with maven. It has a few examples. I imported one of those examples from my trunk into a new project with Maven as well. When I debug the example it stops ...
1
vote
1answer
207 views

How to debug the error “Class file needed by X is missing. reference value Y of package Z refers to nonexisting symbol” in Scala?

I am just getting started with Scala since last week and I am having this problem that is driving me crazy. I have some code that I want to migrate fully from Java to Scala (except libraries) but I ...
0
votes
0answers
64 views

Accessing the LineNumberTable from .class file

LineNumber[] ln = new LineNumber[300]; LineNumberTable lnt = new LineNumberTable(LineNumberTable c); ln = lnt.getLineNumberTable(); Query 1 : I don't know what I should be passing as parameter for ...
0
votes
2answers
620 views

differences in byte code and machine code executables

What are the differences between the byte code binary executables such as Java class files, Parrot bytecode files or CLR files and machine code executables such as ELF, Mach-O and PE what are the ...
2
votes
2answers
334 views

Referencing a .class file in IntelliJ Java Project

I just started playing around with IntelliJ. I need to call a function from a class file I downloaded, so I need to reference a .class file in my project. Can't figure out how to add it to my project. ...
3
votes
2answers
69 views

Where are the names and locations of .class-files defined?

The most upvoted answer to this question suggests searching class-files with specific names in specific folders, as a workaround for reflecting anonymous inner classes. In which document (if any) are ...
5
votes
1answer
179 views

Should we use the ScalaSignature directly?

The ScalaSignature is an annotation. It contains meta informations. https://github.com/scala/scala/blob/v2.9.2/src/library/scala/reflect/ScalaSignature.java And then parser is provided. but ...
2
votes
1answer
57 views

purpose of catch any in JVM

In Java bytecode, there is an option to specify the constant pool index 0 as the exception handler type, allowing you to catch all exceptions. However, as I understand it, this is exactly identical to ...
2
votes
3answers
1k views

Conversion of class file to Java files

I have one War files (a Java application) consist of 64 class file along with image/CSS/JS files. I have lost the source of this war file. Now I want to do some changes in code. I am looking for some ...
0
votes
3answers
57 views

Unknown class file creation by Eclipse java

Hi I am working on a java project. I am using eclipse as an IDE. I have a file FileProvider.java in the package com.ibm.wala.util.io. For this file Eclipse is making two class files FileProvider.class ...
0
votes
3answers
253 views

Validate Java Classes Inside Jar

Java class files inside jars can be easily replaced and modified. For instance, the following command can be used to replace a compiled class file within a jar: jar uf JarFile.jar ...
2
votes
2answers
118 views

Are there any libraries for extracting class, method, member and field dependency names from a .class file (bytecode)?

As the title says, are there any libraries for extracting class, method, member and field dependency names from a .class file (bytecode)? For example, if I a compiled Scala .class file uses something ...
1
vote
2answers
122 views

instantiate an object given a .class file in a blackberry application

I am writing a blackberry application - after the application has started I need to get a .class file(or maybe something else like a .COD file?) from a database(I will probably have to create a web ...
0
votes
1answer
65 views

constant pool patching

I was looking through the OpenJDK class file parser source and I came across something I've never heard of - Constant Pool Patching. What is this? I've read the JVM specification before but it didn't ...
0
votes
0answers
34 views

I can't see the classfiles in the tomcat webapps

I have a problem, i make a dynamic web project SalesWeb. I have made a servlet CustomerServlet. I have made a servlet ServletListener. I have made all the todo's in web.xml. I have made a new Server ...
4
votes
3answers
2k views

Change string constant in a compiled class

I need to change a string constant in a deployed Java program, i.e. the value inside the compiled .class-files. It can be restarted, but not easily recompiled (though it's an inconvenient option if ...
1
vote
1answer
80 views

How does one add source to a .class file on eclipse?

I am trying to add a date.class file to my eclipse project, but it returns Source Not Found. How do I create/ add a source file from a class file?
0
votes
2answers
239 views

Inserting magic number into class files

I have a jar in which all of the class files have their magic number and type removed, I am not very knowledgeable about this specific area. What would be the best way to go about adding back in ...
6
votes
2answers
468 views

How to create a runnable jar file from source code programmatically?

I need to create runnable .jar file programmatically from a string. My decision is to create a .class file from string and add it to the .jar using JarOutputStream. What API must I use to create ...
2
votes
1answer
476 views

Annotations Specification in Java Class File format?

I am reading Java Virtual Machine Specification second edition for Java 6. But I found it no annotation detail for Java Class File Format. Although the jvm 6 can recognise the annotation. another ...
1
vote
2answers
255 views

JDK problems - Unable to load class files

Ok, so. I ordered a book on Java (Sams teach yourself java in 21 days) a week ago, and it came in just yesterday. I am working on the first example code, and I keep getting this error when I try to ...
1
vote
5answers
325 views

Is it possible to store a byte array(raw data) in a java class file?

I'm using Apache BCEL to dynamically create java classes that will each have its own associated image. These generated class implement the following interface: interface ImageOwner { byte[] ...
0
votes
2answers
344 views

how convert a particular .java to .class with coding?

I have an issue for my application. I want to convert selected .java file to .class file at same path. for that i am using: File directoryPath = new File("."); String command ="cmd.exe /C "+ ...
1
vote
1answer
179 views

JAD crash - invalid/corrupt constant pool

So I've been reading around and found out that apparently JAD crashes when it tries to decompile a class with an invalid constant pool entry. I've been playing about with this purely out of curiosity, ...
0
votes
1answer
198 views

How programmatically to export additional .class files with my JAR

I need the .class files (not related to the source files in the project) located in one of the folder inside the project to be exported with JAR too. If I do export my project with "Deployable ...
4
votes
1answer
317 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 ...
0
votes
1answer
239 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
141 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) ...
6
votes
4answers
1k views

How to programmatically 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 ...
3
votes
1answer
219 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
373 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
182 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?
0
votes
2answers
376 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
922 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 ...

1 2