Compilation problem

Both Wireless Toolkit and NetBeans don't compile previously decompiled files. Thats why I think that the problem is not in the tools but maybe its my foult. Or maybe my decompiler is not valid (the decompiler is "Java Decompiler"). Very need to know the mistake. Thank you.
[281 byte] By [GOSPODINa] at [2007-10-3 11:50:04]
# 1
Why not use the already created classes?
deepspacea at 2007-7-15 14:23:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
Because I use the decompiled files to lern j2me on the real examples. When I want to pack *.jar - it makes errors.
GOSPODINa at 2007-7-15 14:23:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
A lot of decompilers don't really give you any compileable code.You would learn more if you would fix the error in the code.You might want to post the parts of code that give problems and the errors that you get.
deepspacea at 2007-7-15 14:23:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4

Here are some:

(The strings with errors marked by "->")

. . .

m_m_m_mZZZ = false;

m_m_m_eZZZ = true;

-> goto _L1 (illegal start of expression)

JVM INSTR pop ;

m_m_m_mZZZ = false;

. . .

catch(IOException _ex) { }

m_m_m_mZZZ = false;

m_m_m_eZZZ = true;

-> goto _L1 (illegal start of expression)

Exception exception;

->exception; (not a statement)

try

{

if(httpconnection != null)

httpconnection.close();

}

. . .

catch(Exception _ex)

{

return;

}

->JVM INSTR pop ;(";" expected)

try

{

byte abyte1[] = m_m_m_dByteArrayOutputStreamByteArrayOutputStreamByteArrayOutputStream.toByteArray();

RecordStore recordstore1;

(recordstore1 = RecordStore.openRecordStore(m_m_m_bStringStringString, true)).addRecord(abyte1, 0, abyte1.length);

recordstore1.closeRecordStore();

}

Maybe you know good decompiler?

GOSPODINa at 2007-7-15 14:23:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 5
Looks like this code is obfuscated. You won't learn anything form it anyway., it's fairly unreadable..You might try jode (jode.sf.net) as a decompiler. It's free :)But I don't think you'll learn a lot from this..
deepspacea at 2007-7-15 14:23:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 6
Thank you. I'll try.
GOSPODINa at 2007-7-15 14:23:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...