I am triying this code

https://github.com/headius/dexclient/blob/master/src/DexClient.java

And I have in my main code the following code:

   DexClient dxclient=new DexClient();
        String[] name={"/mnt/sdcard/HelloWorld.class"};
        try{
        byte[] mybytes=getBytesFromFile(new File(name[0]));
        byte[][] bytes={mybytes};
        dxclient.classesToDex(name, bytes);
        }catch(Exception e){e.printStackTrace();}

My HelloWorld Class is the following:

package mnt.sdcard;

public class HelloWorld{

private String message;

public void setMessage(String message){
    this.message=message;
}

public String getMessage(){
    return message;
}

}

But I have the next error:

03-23 10:54:00.497: WARN/System.err(298): com.android.dx.cf.iface.ParseException: class name (mnt/sdcard/HelloWorld) does not match path (/mnt/sdcard/HelloWorld.class)

Can someone help me?

Thanks ^_^

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I solve this problem

I changed this:

String[] name={"/mnt/sdcard/HelloWorld.class"};

to this

String[] name={"mnt/sdcard/HelloWorld.class"};

Thanks :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.