How to check disconnection in Java/Android

There are some issues to check disconnection between server and client sockets in the programming area. Inspite of connection closed in real, read method does not give an error to BufferedReader() method like below; if (bufferedReader.read()==-1 )  {          logger.info("CONNECTION TERMINATED!");           clientSocket.close(); setUpSocket(); //sets up the server to reconnect to the client  }else{ sendHeartBeat(); //Send a heartbeat to the client } Many...

Google Translate API sini kendiniz kullanın..Use Google Translate API by own

Merhabalar, Burada bir Java program ornegi verecegim. Bu program Google Translate API nı kullanarak, girilen texti daha önceden tanımlanmış dillere çeviriyor. Google Translate API yüzlerden API dan sadece bir tanesi, bunları kullanarak daha çok şey yapabilirsiniz. Çevirilecek text burada elle yazıldı, ve çevirilecek dil sayısı da belli ama siz istediğiniz gibi değiştirerek farklı uygulamalar yapabilirsiniz. Mesela biz değiştirdik, hatta Netbeans ve Eclipse i beraber kullanarak bir arayüz tasarladık, text'in girilebileceği,...

Funny Source Code Comments

Funny Source Code Comments I recently stumbled upon an awesome Stack Overflow thread, entitled "What is the best comment in source code you have ever encountered?". As you might have guessed, it is a collection of funny source code comments, provided by developers all over the world. Take a look at it, it could definitely make your day. I am reposting here my personal favorites from that long long collection:...