Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
public class FTPUploaderActivity extends Activity { FTPClient ftpClient = new FTPClient(); String path=""; File file=new File(path); String filename=file.getName(); ArrayList<EditText> dynaFields = null; ArrayList <Response> WebData= new ArrayList<Response>(); public static final int SELECT_VIDEO=1; public static final String TAG="UploadActivity"; final String NAMESPACE = "http://tempuri.org/"; final String SERVICEURL = "xxxxxxxxxxxxxxxxxxxxxxxxx"; final String METHOD_NAME="KullaniciGiris"; final String METHOD_NAME1="OzelVeriAlanlariniGetir"; final String METHOD_NAME2="VideoKaydet"; Object response = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button enter=(Button)findViewById(R.id.enter); enter.setFocusable(true); final EditText username=(EditText)findViewById(R.id.username); final EditText password=(EditText)findViewById(R.id.password); final AlertDialog ad=new AlertDialog.Builder(this).create(); enter.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub //request code for Webservice SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); //sending the username to the webservice request.addProperty("kullaniciAdi",username.getText().toString()); //sending the password to the webservice request.addProperty("password",password.getText().toString()); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet = true; //Putting the request in an envelope envelope.setOutputSoapObject(request); HttpTransportSE transport = new HttpTransportSE(SERVICEURL); try { transport.call("http://tempuri.org/"+METHOD_NAME, envelope); //getting the response from the webservice response= envelope.getResponse(); }//end of try catch(Exception exception) { exception.printStackTrace(); }//end of catch if(response!=null && Integer.parseInt(response.toString()) != 0) { openGaleryVideo(); }//end of if else { ad.setCancelable(true); ad.setMessage("Lütfen Kullanıcı Adınızı ve Şifrenizi Kontrol Ediniz."); ad.show(); ad.setCanceledOnTouchOutside(true); }//end of else }//end of onClick method });//end of OnclickListener method }//end of onCreate method public void openGaleryVideo() { Intent intent=new Intent(); intent.setType("video/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, "Select Video"),SELECT_VIDEO); }//end of openGaleryVideo method public String getPath(Uri uri) { String[] projection = {MediaStore.Video.Media.DATA}; Cursor cursor = managedQuery(uri, projection, null, null, null); int column_index = cursor.getColumnIndexOrThrow(MediaStore.Video.Media.DATA); cursor.moveToFirst(); return cursor.getString(column_index); }//end of getPath method //Response Class public class Response { int Id; String Name; String Type; String Value; String DefaultValue; int Flag; int Index; }//end of Response class //onActivityResult public void onActivityResult(int requestCode, int resultCode, Intent data) { final AlertDialog ad=new AlertDialog.Builder(this).create(); super.onActivityResult(requestCode, resultCode, data); if (resultCode == RESULT_OK) { if (requestCode == SELECT_VIDEO) { Uri videoUri = data.getData(); path=getPath(videoUri); //adding scroll view property ScrollView scroll = new ScrollView(this); LinearLayout layout=new LinearLayout(this); layout.setOrientation(LinearLayout.VERTICAL); layout.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); scroll.addView(layout,new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); setContentView(scroll); //Connecting to the web service SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME1); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet = true; //put what we want into the envelope envelope.setOutputSoapObject(request); HttpTransportSE transport = new HttpTransportSE(SERVICEURL); Object response1=null; try { transport.call("http://tempuri.org/"+METHOD_NAME1, envelope); //getting the response from the webservice response1 =envelope.getResponse(); JSONArray jArray= new JSONArray(response1.toString()); for(int i=0;i<jArray.length();i++) { JSONObject json_data= jArray.getJSONObject(i); Response result= new Response(); result.Id= json_data.getInt("Id"); result.Name= json_data.getString("Name"); result.Type= json_data.getString("Type"); result.Value=json_data.getString("Value"); result.DefaultValue=json_data.getString("DefaultValue"); result.Flag=json_data.getInt("Flag"); result.Index=json_data.getInt("Index"); WebData.add(i,result); }//end of for loop }//end of try catch(Exception exception) { exception.printStackTrace(); }//end of catch this.dynaFields = new ArrayList<EditText>(WebData.size()); for(int j=0;j<WebData.size();j++) { TextView t= new TextView(this); t.setText(WebData.get(j).Name); layout.addView(t); EditText newField = new EditText(this); this.dynaFields.add (newField); layout.addView(newField); }//end of for loop Button upload= new Button(this); Button back2=new Button(this); Button exit1=new Button(this); //Upload Button upload.setClickable(true); upload.setFocusable(true); upload.setText("Yükle"); layout.addView(upload); //Back Button back2.setClickable(true); back2.setFocusable(true); back2.setText("Geri"); layout.addView(back2); //Exit button exit1.setClickable(true); exit1.setFocusable(true); exit1.setText("Çıkış"); layout.addView(exit1); exit1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub finish(); } }); back2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub openGaleryVideo(); } }); upload.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub int a=dynaFields.size(); JSONArray j_array= new JSONArray(); for(int k=0;k<a;k++) { JSONObject json = new JSONObject(); String json_name= dynaFields.get(k).getText().toString(); Response r= WebData.get(k); try { j_array.put(k,json.put("Id",r.Id)); j_array.put(k,json.put("Name",r.Name)); j_array.put(k,json.put("Type",r.Type)); j_array.put(k,json.put("Value",json_name)); j_array.put(k,json.put("DefaultValue",r.DefaultValue)); j_array.put(k,json.put("Flag",r.Flag)); j_array.put(k,json.put("Index",r.Index)); } //end of try catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); ad.setMessage(e.toString()); ad.show(); ad.setCanceledOnTouchOutside(true); }//end of catch }//end of for loop SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME2); request.addProperty("serializedKolonList",j_array.toString()); request.addProperty("idUser",Integer.parseInt(response.toString())); request.addProperty("mediaName",filename.toString()); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet = true; //putting the request into the envelope envelope.setOutputSoapObject(request); HttpTransportSE transport = new HttpTransportSE(SERVICEURL); Object response2 = null; try { transport.call("http://tempuri.org/"+METHOD_NAME2, envelope); //getting the response from the webservice response2= envelope.getResponse(); } catch(Exception exception) { exception.printStackTrace(); }//end of catch if(response2!=null && Integer.parseInt(response2.toString()) != 0) { upload upload = new upload(); upload.execute(); }//end of if else { ad.setMessage("Bilgiler kaydedilemedi lütfen tekrar deneyin."); ad.show(); ad.setCanceledOnTouchOutside(true); }//end of else }//end of onClick Method });//end of Listener }//end of If request code }//end of If result code }//end of onActivityResult //ASYNC TASK Upload Class which uploads the file and shows the progress via a dialog public class upload extends AsyncTask<Object, Integer, Void> { //Initializations public ProgressDialog dialog; int progress=0; //Before start to upload the file creating a dialog @Override public void onPreExecute() { dialog = new ProgressDialog(FTPUploaderActivity.this); dialog.setMessage("Lütfen Bekleyin..."); dialog.setIndeterminate(false); dialog.setTitle("Videonuz Yükleniyor"); dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); dialog.setProgress(0); dialog.setMax(100); //dialog.incrementProgressBy((int)((progress*100)/(file.length()))); dialog.show(); } //Uploading the file in background with showing the progress @Override public Void doInBackground(Object... arg0) { String server = "xx.xx.xx.xx"; // TODO Auto-generated method stub try { ftpClient.connect(server,21); ftpClient.login("xxxxxxxxx", "xxxxxxx"); ftpClient.changeWorkingDirectory("murat.alemdag\ftp"); ftpClient.enterLocalPassiveMode(); FileInputStream in=new FileInputStream(file); ftpClient.setFileType(FTP.BINARY_FILE_TYPE); ftpClient.storeFile(filename, in); try { InputStream stO = new BufferedInputStream(ftpClient.retrieveFileStream("foo.bar"), ftpClient.getBufferSize()); OutputStream stD = new FileOutputStream("bar.foo"); org.apache.commons.net.io.Util.copyStream(stO, stD, ftpClient.getBufferSize(), CopyStreamEvent.UNKNOWN_STREAM_SIZE, new CopyStreamAdapter() { public void bytesTransferred(long totalBytesTransferred, int bytesTransferred, long streamSize) { // Your progress Control code here publishProgress((int) ((totalBytesTransferred/file.length())*100)); } }); ftpClient.completePendingCommand(); } catch (Exception e) {} publishProgress(100); ftpClient.logout(); } catch (Exception ex) { ex.printStackTrace(); } return null; }//end of doInBackground method //making an update on progress @Override public void onProgressUpdate(Integer... values) { super.onProgressUpdate(values); dialog.setProgress(values[0]); }//end of onProgressUpdate //After finishing the progress the dialog will disappear! @Override public void onPostExecute(Void result) { final AlertDialog ad = new AlertDialog.Builder(FTPUploaderActivity.this).create(); try { dialog.dismiss(); setContentView(R.layout.select); Button select= (Button) findViewById(R.id.select); select.setFocusable(true); select.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub openGaleryVideo(); } }); Button disconnect= (Button) findViewById(R.id.disconnect); disconnect.setFocusable(true); disconnect.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub try { ftpClient.disconnect(); ad.setMessage("Bağlantıyı Kestiniz."); ad.show(); ad.setCanceledOnTouchOutside(true); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }); Button exit= (Button) findViewById(R.id.exit); exit.setFocusable(true); exit.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub finish(); } }); } //End of the second try body catch(Exception e) { e.printStackTrace(); } }//end of onPostExecute method }// end of asyncTask class }//end of main |