viewing paste Unknown #6538 | Java

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
package com.example.com.omegle.test;
 
import java.util.Map;
 
import org.json.JSONArray;
import org.nikki.omegle.Omegle;
import org.nikki.omegle.core.OmegleEvent;
import org.nikki.omegle.core.OmegleException;
import org.nikki.omegle.core.OmegleMode;
import org.nikki.omegle.core.OmegleSession;
import org.nikki.omegle.core.OmegleSpyStranger;
import org.nikki.omegle.event.OmegleEventAdaptor;
import org.nikki.omegle.event.OmegleEventListener;
 
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Build;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
 
public class MainActivity extends Activity {
 
    TextView txt;
    Button m_btn;
    EditText m_edt;
    OmegleSession session;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
 
        m_btn = (Button)findViewById(R.id.button);
        m_edt = (EditText)findViewById(R.id.type);
        m_btn.setOnClickListener(new View.OnClickListener() {
            
            @Override
            public void onClick(View v) {
              try{
                  
                if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB ) {
                    new SendMsg().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
                } else {
                    new SendMsg().execute();
                }
              }
              catch(Exception e)
                {
                    System.out.print(e);
                }
            }
        });
        
        //OmegleChat om=new OmegleChat();
        try{
        if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB ) {
            new OmegleChat().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
        } else {
            new OmegleChat().execute();
        }
        }
        catch(Exception e)
        {
            System.out.print(e);
        }
    
    }
    
    
 
    protected void sendIt(View v) {
        txt.append("You: "+m_edt.getText().toString());
        m_edt.setText("");
    }
    
    private class SendMsg extends AsyncTask<Void, Void, Void> {
 
        
           
        @Override
        protected void onPreExecute() {
            
            
        
        }
 
        @Override
        protected void onProgressUpdate(Void... values) {
       
        }
        @Override
        
        protected Void doInBackground(Void... arg0) {
            // TODO Auto-generated method stub
            //OmgeleChatOn();
            
 
            try {
                session.send(m_edt.getText().toString());
                m_edt.setText("");
 
            } catch (OmegleException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
 
            return null;
        }
        
         @Override
            protected void onPostExecute(Void result) {
    
            
         }
  }
 
    
        private class OmegleChat extends AsyncTask<Void, Void, Void> {
 
            
       
        @Override
        protected void onPreExecute() {
            
            txt=(TextView)findViewById(R.id.omegle);
            txt.append("Omegele Connection Started... \n");
        
        }
 
        @Override
        protected void onProgressUpdate(Void... values) {
       
        }
        @Override
        
        protected Void doInBackground(Void... arg0) {
            // TODO Auto-generated method stub
            OmgeleChatOn();
            return null;
        }
        
         @Override
            protected void onPostExecute(Void result) {
    
            
         }
  }
    
    public void OmgeleChatOn()
    {
        
        Omegle omegle = new Omegle();
        try {
            System.out.println("Opening session...");
            
             session = omegle.openSession(OmegleMode.NORMAL, new OmegleEventAdaptor() {
                
                @Override
                public void chatWaiting(OmegleSession session) {
                    System.out.println("Waiting for chat...");
                }
 
                
                @Override
                public void chatConnected(OmegleSession session) {
                    System.out
                            .println("You are now talking to a random stranger!");
                }
 
                @Override
                public void chatMessage(OmegleSession session, final String message) {
                    System.out.println("Stranger: " + message);
                    runOnUiThread(new Runnable() {
                        
                        @Override
                        public void run() {
 
                            txt.append("Stranger:"+message+"\n");
                            m_btn.setClickable(true);
                        }
                    });
                    
                }
 
                @Override
                public void messageSent(OmegleSession session, final String string) {
                    System.out.println("You: " + string);
                    runOnUiThread(new Runnable() {
                        
                        @Override
                        public void run() {
 
                            txt.append("You:"+string+"\n");
                        }
                    });
                }
 
                @Override
                public void strangerDisconnected(OmegleSession session) {
                    System.out.println("Stranger disconnected, goodbye!");
                    //System.exit(0);
                }
 
                @Override
                public void omegleError(OmegleSession session, String string) {
                    System.out.println("ERROR! " + string);
                    System.exit(1);
                }
                
                
                
            });
              
            
                    
        } catch (OmegleException e) {
            e.printStackTrace();
        }
        
        
 
    }
}
 
Viewed 859 times, submitted by Guest.