//Following code works fine but read's the source code as well as the content, I just need to read the content Thanks for the help.//
package t.n.e;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import org.xml.sax.Parser;
import android.app.Activity;
import android.os.Bundle;
import android.widget.EditText;
public class urlgettingproject extends Activity {
    private EditText T1;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        T1 = (EditText)findViewById(R.id.T1);
        StringBuilder content = new StringBuilder();
        try {
            URL url = new URL("http://10.0.22.222:8080/SaveName.jsp?first=12&second=12&work=min");
            BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
            String str;
            while ((str = in.readLine()) != null) {
                content.append(str +"\n");
                T1.setText(content);
            }
            in.close();
        } catch (MalformedURLException e){
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
 
     
    