Streaming jar in

Hey! so my minecraft mod has a loader as its a private mod. it recieves the b64 buffer of the jar file, then starts loading the classes. the thing is though it has errors for the minecraft classes, like: Caused by: java.lang.ClassNotFoundException: net.minecraft.class_2382 Any help would be appreciated!
18 Replies
JavaBot
JavaBot7d ago
This post has been reserved for your question.
Hey @cvs0! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
cvs0
cvs0OP7d ago
cvs0
cvs0OP7d ago
thats where we get the classes from the jar, and here is the custom class loader.
package cc.cnrm.loader.internal;

import java.util.Map;

public class CustomClassLoader extends ClassLoader {
private final Map<String, byte[]> classes;

public CustomClassLoader(ClassLoader parent, Map<String, byte[]> classes) {
super(parent);
this.classes = classes;
}

@Override
protected Class<?> findClass(String name) throws ClassNotFoundException {
Class<?> loadedClass = findLoadedClass(name);
if (loadedClass == null) {
byte[] classBytes = classes.get(name);
if (classBytes != null) {
return defineClass(name, classBytes, 0, classBytes.length);
}
}
return super.findClass(name);
}


public Class<?> defineClass(String name, byte[] b) {
return super.defineClass(name, b, 0, b.length);
}
}
package cc.cnrm.loader.internal;

import java.util.Map;

public class CustomClassLoader extends ClassLoader {
private final Map<String, byte[]> classes;

public CustomClassLoader(ClassLoader parent, Map<String, byte[]> classes) {
super(parent);
this.classes = classes;
}

@Override
protected Class<?> findClass(String name) throws ClassNotFoundException {
Class<?> loadedClass = findLoadedClass(name);
if (loadedClass == null) {
byte[] classBytes = classes.get(name);
if (classBytes != null) {
return defineClass(name, classBytes, 0, classBytes.length);
}
}
return super.findClass(name);
}


public Class<?> defineClass(String name, byte[] b) {
return super.defineClass(name, b, 0, b.length);
}
}
JavaBot
JavaBot6d ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
cvs0
cvs0OP6d ago
need help
0x150
0x1506d ago
stacktrace of the error?
cvs0
cvs0OP6d ago
0x150
0x1506d ago
do you have any context around the code? some github repo i can look at? hard to diagnose what exactly is wrong without proper context
cvs0
cvs0OP6d ago
Its closed source, but it pretty much recieves the buffer of a jar, then just passes the bytes to that load method.
JavaBot
JavaBot6d ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
cvs0
cvs0OP6d ago
hey
dan1st
dan1st6d ago
you could try logging classes and name in findClass and ask yourself where the net.minecraft.class_2382 is supposed to be, what requires it and why you can still provide a minima reproducer
cvs0
cvs0OP6d ago
its a library that the jar references, so i dont think its bundled with it.
dan1st
dan1st6d ago
and where is that class located?
JavaBot
JavaBot6d ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
cvs0
cvs0OP6d ago
Well i mean thats just an internal minecraft class. we should be ignoring those when defining the classes i think
dan1st
dan1st5d ago
?
JavaBot
JavaBot5d ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.

Did you find this page helpful?