Java Reference
In-Depth Information
if
(line.charAt(0) != '!')
{
txtOut-
put.append(line+"\n");
continue;
}
tx-
tUsers.setText("");
String[] users;
users
=
line.substring(1)
.split("
");
for
(String
user: users)
{
tx-
tUsers.append(user);
tx-
tUsers.append("\n");
}
}
}
catch
(IOException
ioe)
{
txtOut-
put.append("lost the link");
return;
}
}
}).start();
}
catch (Exception e)
{
Search WWH ::




Custom Search