Instead of print:
"Hello
How are you?"
I print:
"
Helo
How are you?"
So far I did something like that:
try {
URL url = new URL(server);
BufferedReader in = new BufferedReader(new InputStreamReader( url.openStream()));
String strLine;
int count = 1;
while ((strLine = in.readLine()) != null ) {
String str = strLine;
String read;
if (count == 1) {
String mail = str; // Here I save the first line as mail
count++;
}
if (count > 1) {
if (count == 2) {
read = "";
jTextArea1.setText(read);
count++;
}
else if (count >= 3) {
read = jTextArea1.getText();
jTextArea1.setText(read + "\n" + str);
count++;
}
count++;
}


Sign In
Create Account


Back to top









